@extends('layouts.admin') @section('title') @lang('Manage Blog') @endsection @section('breadcrumb')

@lang('Manage Blog')

@endsection @section('content')
@forelse ($blogs as $item) @empty @endforelse
{{ __('Photo') }} {{ __('Title') }} {{ __('Category') }} {{ __('Views') }} {{ __('Status') }} {{ __('Action') }}
{{ $item->title }} {{ $item->category->name }} {{ $item->views }} @if ($item->status == 1) @lang('Active') @else @lang('Inactive') @endif
@lang('No Data Found')
@endsection @push('script') @endpush