Default setup of laravel environment

- Creating default laravel setup with composer
This commit is contained in:
2026-04-26 21:08:51 +02:00
parent 328d7f9c7a
commit 41e1d7ffb5
56 changed files with 10333 additions and 44 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');