Mercurial > borealpoint
annotate artisan @ 2:90296614b7e2 default tip
Adding in the base for the clients table
| author | luka |
|---|---|
| date | Thu, 28 Aug 2025 20:55:40 -0400 |
| parents | 9d7dcd54c677 |
| children |
| rev | line source |
|---|---|
| 0 | 1 #!/usr/bin/env php |
| 2 <?php | |
| 3 | |
| 4 use Illuminate\Foundation\Application; | |
| 5 use Symfony\Component\Console\Input\ArgvInput; | |
| 6 | |
| 7 define('LARAVEL_START', microtime(true)); | |
| 8 | |
| 9 // Register the Composer autoloader... | |
| 10 require __DIR__.'/vendor/autoload.php'; | |
| 11 | |
| 12 // Bootstrap Laravel and handle the command... | |
| 13 /** @var Application $app */ | |
| 14 $app = require_once __DIR__.'/bootstrap/app.php'; | |
| 15 | |
| 16 $status = $app->handleCommand(new ArgvInput); | |
| 17 | |
| 18 exit($status); |
