@extends('layouts.admin') @section('content')

{{__('Blog List')}}

{{__('Add Blog')}}
@foreach($blogs as $blog) @endforeach
{{__('Image')}} {{__('Title')}} {{__('Category')}} {{__('Status')}} {{__('Name')}} {{__('Action')}}
img
{{$blog->title}} {{$blog->category ? $blog->category->name : '' }} @if($blog->status == 1) {{ __('Published') }} @else {{ __('Unpublished') }} @endif {{ $blog->user ? $blog->user->name : '' }}
{{@$blogs->links()}}
@endsection @push('style') @endpush @push('script') @endpush