initial commit

This commit is contained in:
2022-01-04 13:27:11 -07:00
parent 3764dad884
commit aed6ca46c2
63 changed files with 3780 additions and 1 deletions

3
scripts/bootstrap.sh Normal file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
composer require itsgoingd/clockwork

8
scripts/genres.sh Normal file
View File

@ -0,0 +1,8 @@
#!/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