| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace App\Jobs;
- use App\Models\Order;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Foundation\Queue\Queueable;
- class GenerateInstallationPack implements ShouldQueue
- {
- use Queueable;
- /**
- * Create a new job instance.
- */
- public function __construct(private readonly Order $order)
- {
- //
- }
- /**
- * Execute the job.
- */
- public function handle(): void
- {
- // generate pack
- }
- }
|