Laravel-solid-architecture offers you to do modern API development in Laravel. Project has also support for new versions of Laravel.
Laravel-solid-architecture comes included with...
- Laravel jwt for OAuth Authentication
- A modern exception handler for APIs.
- multi Authentication
git clone https://github.com/KhalidEdaig/Laravel-solid-architecture && cd Laravel-solid-architecture && composer install This will:
- Create the project.
- Install the dependencies.
- Copy the .env.example to .env in the project root.
- Generate the
APP_KEY. - Generate the
JWT_SECRET
Update your .env file as needed;
First clone the repository.
git clone https://github.com/KhalidEdaig/Laravel-solid-architectureInstall dependencies.
composer installCopy the .env file an create and application key.
cp .env.example .env && php artisan key:generate
Migrate the tables.
php artisan migrate