@extends('layouts.app') @section('btn') @can('create', App\Models\Role::class) Ajouter @endcan @endsection @section('content')
@forelse($paymentMethods as $payment_method) @empty @endforelse
Id Nom @lang('crud.common.actions')
{{ $payment_method->id ?? '-' }} {{ $payment_method->name ?? '-' }}
@can('update', $payment_method) @endcan @can('delete', $payment_method) @endcan
@lang('crud.common.no_items_found')
@endsection @section('scripts') @endsection