@extends('layouts.app') @section('btn') @can('create', App\Models\Speciality::class) Ajouter @endcan @endsection @section('styles') @include('layouts.plugins.styles.datatable') @endsection @section('content')
@forelse($specialities as $speciality) @empty @endforelse
Id Nom Creation @lang('crud.common.actions')
{{ $speciality->id ?? '-' }} {{ $speciality->name ?? '-' }} {{ $speciality->created_at->format('d/m/Y') ?? '-' }}
@can('update', $speciality) @endcan @can('delete', $speciality) @endcan
@lang('crud.common.no_items_found')
@endsection @section('scripts') @endsection @section('scripts') @include('layouts.plugins.scripts.datatable') @endsection