Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alinademi/d8770596d6425d1e2adafb9f8612244b to your computer and use it in GitHub Desktop.
Save alinademi/d8770596d6425d1e2adafb9f8612244b to your computer and use it in GitHub Desktop.
laravel-nova-authorized.php
<?php
// add this code on your nova resource
public function authorizedToUpdate(Request $request)
{
return false;
}
public function authorizedToDelete(Request $request)
{
return false;
}
public function authorizedToForceDelete(Request $request)
{
return false;
}
public static function authorizedToCreate(Request $request)
{
return false;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment