@extends('layouts.dashboard.app') @section('content')
@foreach ($posts as $post) @endforeach
Tittle Created by Category Created At
{{$post->title}} {{ $post->user->name }} @foreach ($post->categories as $category) {{ $category->name }} @if (!$loop->last), @endif @endforeach {{$post->created_at->format('Y/m/d')}}
{!! $posts->appends(Request::except('page'))->links('pagination::bootstrap-5') !!}
@endsection