海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
482 B

4 years ago
  1. <?php
  2. namespace App\Events;
  3. use App\Models\Supplier;
  4. use Illuminate\Broadcasting\InteractsWithSockets;
  5. use Illuminate\Foundation\Events\Dispatchable;
  6. use Illuminate\Queue\SerializesModels;
  7. class DepositUpdate
  8. {
  9. use Dispatchable, InteractsWithSockets, SerializesModels;
  10. public $supplier;
  11. /**
  12. * Create a new event instance.
  13. *
  14. * @return void
  15. */
  16. public function __construct(Supplier $supplier)
  17. {
  18. $this->supplier = $supplier;
  19. }
  20. }