@extends('backend.app') @section('content')

Category Manage

Category Create

@can('category.create')
@csrf
@endcan
@foreach($items as $key=> $item) @endforeach
Category Name Parent Category Category Image Popular Is Menu Action
{{$item->name}} {{$item->parent?$item->parent->name:''}} {{$item->is_popular=='1'?'yes':'no'}} {{$item->is_menu=='1'?'yes':'no'}} @can('category.edit') @endcan @can('category.delete') @endcan

{!! urldecode(str_replace("/?","?",$items->appends(Request::all())->render())) !!}

@endsection @push('js') @endpush