@extends('Backend.layouts.app') @section('content') @if(Session::has('msg'))
| Date | Category Name | Title | Author | Gender | Event name | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ Carbon::parse($l->created_at)->format('Y M d H:i A')}} | {{$l->category->name}} | {{$l->title}} | {{$l->author}} | {{AppHelper::gender[$l->gender]}} | {{$l->eventName}} | @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() !!} |