@extends('admin.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('admin.partials.rtl-style') @section('content')
{{ __('Categories') }}
@includeIf('admin.partials.languages')
{{ __('Add') }}
@if (count($categories) == 0)

{{ __('NO CATEGORY FOUND') . '!' }}

@else
@foreach ($categories as $category) @endforeach
{{ __('Name') }} {{ __('Icon') }} {{ __('Status') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ strlen($category->name) > 50 ? mb_substr($category->name, 0, 50, 'UTF-8') . '...' : $category->name }} @if ($category->status == 1)

{{ __('Active') }}

@else

{{ __('Deactive') }}

@endif
{{ $category->serial_number }}
@csrf
@endif
{{-- create modal --}} @include('admin.listing.category.create') {{-- edit modal --}} @include('admin.listing.category.edit') @endsection