FormSubmit.php 680 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. namespace App\Jobs;
  3. use App\Models\Formdemo;
  4. use Illuminate\Bus\Queueable;
  5. use Illuminate\Queue\SerializesModels;
  6. use Illuminate\Queue\InteractsWithQueue;
  7. use Illuminate\Contracts\Queue\ShouldQueue;
  8. use Illuminate\Foundation\Bus\Dispatchable;
  9. class FormSubmit implements ShouldQueue
  10. {
  11. use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
  12. /**
  13. * Create a new job instance.
  14. *
  15. * @return void
  16. */
  17. protected $formdemo;
  18. public function __construct(Formdemo $formdemo)
  19. {
  20. $this->formdemo=$formdemo;
  21. }
  22. /**
  23. * Execute the job.
  24. *
  25. * @return void
  26. */
  27. public function handle()
  28. {
  29. }
  30. }