@extends('layouts.app')
@section('header')
@endsection
@section('content')
ID |
Title |
Thumbnail |
Status |
Created By |
Created At |
Action |
@foreach($blogs as $blog)
{{$blog->id}} |
{{$blog->title}} |
|
{{$blog->status_name}} |
{{$blog->createdBy !== null ? $blog->createdBy->name : ''}} |
{{$blog->created_at}} |
Show
Edit
|
@endforeach
{{ $blogs->links() }}
@endsection