@extends('admin.layouts.master') @section('title','All Categories') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('All Categories') }}
@can('categories.create') @endcan
@foreach($cate as $cat) @endforeach
# {{ __('Icon') }} {{ __('Image') }} {{ __('Category Name') }} {{ __('Slug') }} {{ __('Featured') }} {{ __('Status') }} {{ __('Action') }}
1
@if($cat['cat_image'] !== NULL && $cat['cat_image'] !== '') {{$cat->title}} @else {{$cat->title}} @endif {{$cat->title}} {{$cat->slug}} @if( $cat->featured == 1) @else @endif @if($cat->status == '1') @else @endif
@endsection @section('script') @endsection