@extends('admin/layouts/default') {{-- Page title --}} @section('title') Category {{ trans('app.manage') }} @parent @stop @section('content')

Category

View Category

@foreach ($items as $item) @endforeach
S.No Category Name Feature Image Total Images Status Actions
{{ $item->category_name }} {{ DB::table('tbl_item_category')->where('category_id',$item->category_id)->count() }} {{config('variables.publish')[$item->is_publish]}}
  • {!! Form::open([ 'class'=>'delete', 'url' => route(ADMIN . '.category.destroy', $item->category_id), 'method' => 'DELETE', ]) !!} {!! Form::close() !!}
@endsection