@extends('admin.master') @section('top-title','| Category') @section('breadcome-title','Category') @section('content')
{{ csrf_field() }}
@if(Session::has('msg'))

Saved! {!! session ('msg') !!}

@endif

Categories

@foreach($categories as $cat) @endforeach
# Name Image Created by Action
{{$loop->iteration}} {{$cat->name}} {{@$cat->user->name}} Edit Delete
@endsection