PHP code example of jjarroyo / laravel-kit
1. Go to this page and download the library: Download jjarroyo/laravel-kit 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/ */
jjarroyo / laravel-kit example snippets
bash
php artisan kit:make-pro-crud {model} {--m|model} {--soft-deletes} {--prefix=}
bash
php artisan kit:init
bash
# Translate dashboard.blade.php → lang/es/dashboard.php
php artisan kit:translate-view dashboard
# Translate all views in the settings directory → lang/es/settings.php
php artisan kit:translate-view settings
# Translate settings views → lang/en/general.php
php artisan kit:translate-view settings --lang=en --group=general
bash
php artisan kit:make-crud {name} {--m|model} {--soft-deletes}