海南旅游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.

30 lines
699 B

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