@extends('layouts.app') @section('content')

PrinterTypes PDF Excel

@can('authorize', 'add_printer_types') Ajouter PrinterType @endcan
@foreach($printerTypes as $printerType) @endforeach
Nom
{{ $printerType->name }}
@can('authorize', 'edit_printer_types') @endcan @can('authorize', 'delete_printer_types') @endcan
@if(request()->is('printer-types') || request()->is('printer-types/*')) @can('authorize', 'add_printer_types') @includeIf('printer-types.create') @endcan @can('authorize', 'edit_printer_types') @includeIf('printer-types.edit') @endcan @can('authorize', 'delete_printer_types') @includeIf('printer-types.delete') @endcan @endif @endsection @push('scripts') @endpush