@extends('Backend.layouts.app') @section('content')
@foreach($list as $l) @endforeach
Date Category Name Title Author Status Actions
{{ Carbon::parse($l->created_at)->format('Y M d H:i A')}} {{$l->category->name}} {{$l->title}} {{$l->author}} @if ($l->status==0) Approve @else Approved @endif {{-- --}}
{!! Form::open(['route' => ['blog.destroy',$l->id],'method'=>'DELETE','class'=>'d-inline']) !!} {!! Form::submit('Delete', array('class' => 'btn btn-sm btn-danger' )) !!} {!! Form::close() !!}
@endsection