PHP code example of kevinpurwito / laravel
1. Go to this page and download the library: Download kevinpurwito/laravel library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kevinpurwito / laravel example snippets
bash
composer create-project kevinpurwito/laravel app-name
composer install
cp .env.example .env
php artisan vendor:publish --provider "OwenIt\Auditing\AuditingServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="Spatie\MediaLibrary\MediaLibraryServiceProvider" --tag="migrations"
php artisan vendor:publish --provider="Spatie\Permission\PermissionServiceProvider"
php artisan migrate --seed
php artisan key:generate
bash
php artisan test