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

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

@foreach($all_category as $data) @endforeach
{{__('ID')}} {{__('Name')}} {{__('Status')}} {{__('Action')}}
{{$data->id}} {{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.appointment.category.bulk.action')]) @include('backend.partials.datatable.script-enqueue') @include('backend.partials.icon-field.js') @endsection