@extends('layouts.master') @section('title','Categories') @section('parentPageTitle', 'All Category') @section('content')

@translate(All Categories)

@forelse($categories as $item) @empty @endforelse
S/L @translate(Icon) @translate(Category) @translate(Parent Category) @translate(Popular) @translate(Top) @translate(Publish) @translate(Action)
{{ ($loop->index+1) + ($categories->currentPage() - 1)*$categories->perPage() }} @if($item->icon != null) {{$item->name}} @endif {{$item->name}} {{$item->parent->name ?? 'N/A'}}
is_popular == true ? 'checked' : null}} />
top == true ? 'checked' : null}} />
is_published == true ? 'checked' : null}} />

@translate(No Data Found)

{{ $categories->links() }}
@endsection