@extends('layouts.main-app') @section('title', 'Home') @section('content') @include('layouts.navbar')
Banner

BLOGS

Home > About Us

Categories


@foreach ($categories as $category) > {{ $category->name }} @endforeach
{{-- Blog content --}}
@foreach ( $blogs as $blog )

{{ $blog->title }}


Date: {{ $blog->created_at->format('F j, Y') }} | Category: @foreach ($blog->categories as $category) {{ $category->name }}{{ !$loop->last ? ', ' : '' }} @endforeach

{{ \Illuminate\Support\Str::limit($blog->content, 350, '...') }}

@endforeach
{{ $blogs->links() }}
{{-- End of Blog content --}}
@include('layouts.footer') @endsection