@extends('Backend.layouts.app') @section('content')
@foreach($list as $l) @endforeach
Date Name Sort Status Actions
{{ Carbon::parse($l->created_at)->format('Y M d H:i A')}} {{$l->name}} {{$l->sort}} @if($l->status==1) Active @else Inactive @endif
{!! Form::open(['route' => ['category.destroy',$l->id],'method'=>'DELETE','class'=>'d-inline','onsubmit' => 'return confirm("Are you sure ?")']) !!} {!! Form::submit('Delete', array('class' => 'btn btn-sm btn-danger')) !!} Add Item {!! Form::close() !!}
@endsection