You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

12 lines
527 B

@can('edit_'.$entity)
<a href="{{ route($entity.'.edit', [str_singular($entity) => $id]) }}" class="btn btn-sm btn-light">
Edit</a>
@endcan
@can('delete_'.$entity)
{!! Form::open( ['method' => 'delete', 'url' => route($entity.'.destroy', ['client' => $id]), 'style' => 'display: inline', 'onSubmit' => 'return confirm("Are yous sure wanted to delete it?")']) !!}
<button type="submit" class="btn-delete btn btn-sm btn-light">
</button>
{!! Form::close() !!}
@endcan