Ребята.
Я хочу разрешить удаление только в том случае, если выполняется какое-либо условие, например, приведенный ниже код. Как я могу это сделать?
public function destroy(Customer $customer) {
if( ! $customer->is_special() ) {
$customer->delete();
return redirect( route( 'customer.index' ) );
}
// Else return some error message to the user, something like this
return error('You cannot delete this customer.');
}
Спасибо.