@extends('layouts.app') @section('title', 'Ecosystem - Apero Technologies Group') @section('description', 'Hệ sinh thái sản phẩm của Apero Technologies Group') @push('page-styles') {{-- CSS riêng cho trang ecosystem --}} @endpush @push('scripts-libs') {{-- JS riêng cho trang ecosystem --}} @endpush @section('content')

{{ $article->title }}

{{ formatDate($article->published_at) }}
@if ($article->category)
{{ $article->category }}
@endif
{{ $article->view_count }} lượt xem
@if ($article->featured_image)
{{ $article->title }}
@endif @if ($article->excerpt)
{{ $article->excerpt }}
@endif
{!! $article->content !!}
@if ($article->tags && count($article->tags) > 0)

Tags

@foreach ($article->tags as $tag) {{ $tag }} @endforeach
@endif @if ($article->author_name)
{{ substr($article->author_name, 0, 1) }}

{{ $article->author_name }}

@if ($article->author_email)

{{ $article->author_email }}

@endif
@endif
@endsection