@extends('layouts.app') @section('btn') @can('create', App\Models\Workspace::class) Ajouter @endcan @endsection @section('content')
@forelse($workspaces as $workspace) @empty @endforelse
Id Label Number Technicien Creation Actions
{{ $workspace->id ?? '-' }} {{ $workspace->label ?? '-' }} {{ $workspace->number ?? '-' }} {{ $workspace->user->first_name ?? '-' }} {{ $workspace->user->last_name ?? '-' }} {{ $workspace->created_at->format('d/m/Y') ?? '-' }} @can('view', $workspace) @endcan @can('update', $workspace) @endcan @can('delete', $workspace) @endcan
Aucun resultats
@endsection @section('scripts') @endsection