🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:policy.stub
<?php namespace {{ namespace }}; use Illuminate\Auth\Access\Response; use {{ namespacedModel }}; use {{ namespacedUserModel }}; class {{ class }} { /** * Determine whether the user can view any models. */ public function viewAny({{ user }} $user): bool { return false; } /** * Determine whether the user can view the model. */ public function view({{ user }} $user, {{ model }} ${{ modelVariable }}): bool { return false; } /** * Determine whether the user can create models. */ public function create({{ user }} $user): bool { return false; } /** * Determine whether the user can update the model. */ public function update({{ user }} $user, {{ model }} ${{ modelVariable }}): bool { return false; } /** * Determine whether the user can delete the model. */ public function delete({{ user }} $user, {{ model }} ${{ modelVariable }}): bool { return false; } /** * Determine whether the user can restore the model. */ public function restore({{ user }} $user, {{ model }} ${{ modelVariable }}): bool { return false; } /** * Determine whether the user can permanently delete the model. */ public function forceDelete({{ user }} $user, {{ model }} ${{ modelVariable }}): bool { return false; } }
Save Changes
Cancel
Create New File
Create New Folder