Skip to content

Instantly share code, notes, and snippets.

View abyaz878's full-sized avatar
:shipit:
Retro

Muhtasim Khandaker abyaz878

:shipit:
Retro
  • Dhaka, Bangladesh
View GitHub Profile
@dipenparmar12
dipenparmar12 / laravel-spatie
Last active June 5, 2024 01:01
Laravel spatie cheatsheet, All methods handbook.
<?php
$user->assignRole('admin');
$user->getAllPermissions();
// Adding permissions to a user
$user->givePermissionTo('edit articles');
// Adding permissions via a role
@jacurtis
jacurtis / 1) Main.blade.php
Created February 16, 2017 16:37
Laravel 5.4 Components & Slots
<!-- 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>