2022-01-04 13:27:11 -07:00

9 lines
288 B
Bash

#!/usr/bin/env bash
php artisan make:model ${1} -mf
php artisan make:controller Dashboard/${1}Controller
php artisan make:request ${1}/StoreRequest
php artisan make:request ${1}/UpdateRequest
mkdir -pv resources/js/Pages/${1}s
touch resources/js/Pages/${1}s/{Index,Show,Create,Edit}.vue