選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

CompanyDefaultEvent.php 467B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Events;
  3. use Illuminate\Broadcasting\InteractsWithSockets;
  4. use Illuminate\Database\Eloquent\Model;
  5. use Illuminate\Foundation\Events\Dispatchable;
  6. use Illuminate\Queue\SerializesModels;
  7. class CompanyDefaultEvent
  8. {
  9. use Dispatchable, InteractsWithSockets, SerializesModels;
  10. public Model $model;
  11. /**
  12. * Create a new event instance.
  13. */
  14. public function __construct(Model $model)
  15. {
  16. $this->model = $model;
  17. }
  18. }