This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $user->assignRole('admin'); | |
| $user->getAllPermissions(); | |
| // Adding permissions to a user | |
| $user->givePermissionTo('edit articles'); | |
| // Adding permissions via a role |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- This is the main Blade file that you want your components to show up in --> | |
| <!DOCTYPE html> | |
| <html lang="{{ config('app.locale') }}"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Laravel</title> |