49 lines
1.0 KiB
PHP
49 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\Commands;
|
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
use LaravelZero\Framework\Commands\Command;
|
|
|
|
use function Termwind\render;
|
|
|
|
class InspireCommand extends Command
|
|
{
|
|
/**
|
|
* The signature of the command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'inspire {name=Artisan}';
|
|
|
|
/**
|
|
* The description of the command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Display an inspiring quote';
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
render(<<<'HTML'
|
|
<div class="py-1 ml-2">
|
|
<div class="px-1 bg-blue-300 text-black">Laravel Zero</div>
|
|
<em class="ml-1">
|
|
Simplicity is the ultimate sophistication.
|
|
</em>
|
|
</div>
|
|
HTML);
|
|
}
|
|
|
|
/**
|
|
* Define the command's schedule.
|
|
*/
|
|
public function schedule(Schedule $schedule): void
|
|
{
|
|
// $schedule->command(static::class)->everyMinute();
|
|
}
|
|
}
|