background
Home / Portfolio / Laravel Permission
PORTFOLIO

Laravel Permission

Laravel Permission is a website that allows you to manage user permissions and roles in your Laravel application.

#Laravel  #Role & Permission  

Laravel Permission

Laravel Permission is a website that allows you to manage user permissions and roles in your Laravel application.

Live demo : Not available yet.

Source code : GitHub

Installation and Usage

Clone the repository

1git clone https://github.com/raprmdn/learn-5-permission.git
bash

Install the dependencies

1composer install
bash

Copy the .env.example file to .env

1cp .env.example .env
bash

Generate the application key

1php artisan key:generate
bash

Run the migrations

1php artisan migrate
bash

Run the seeder

1php artisan db:seed
bash

Start the development server

1php artisan serve
bash