@extends('backend.admin-master') @section('site-title') {{__('Courses Category')}} @endsection @section('style') @include('backend.partials.datatable.style-enqueue') @endsection @section('content')

{{__('All Courses Categories')}}

@foreach($all_category as $data) @endforeach
{{__('Name')}} {{__('Status')}} {{__('Icon')}} {{__('Action')}}
{{optional($data->lang)->title ?? __('Untitled')}}

{{__('Add New Category')}}

@csrf
@foreach($all_languages as $lang)
@endforeach
@endsection @section('script') @include('backend.partials.bulk-action',['action' => route('admin.courses.category.bulk.action')]) @include('backend.partials.datatable.script-enqueue') @include('backend.partials.icon-field.js') @endsection