1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Console\Commands;
- use Illuminate\Console\Command;
- class Test extends Command
- {
-
- protected $signature = 'test';
-
- protected $description = 'Command description';
-
- public function handle()
- {
-
- }
- }
|