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

Categories

@if(Session::has('success')) @endif @if(Session::has('error')) @endif
@can('Create Category')  New Category @endcan @foreach($categories as $category) @endforeach
# Name status Date Action
{{$i}} {{$category->name}} {{$category->status}} {{date('M d, Y H:i A',strtotime($category->created_at))}}
@endsection