| 1234567891011121314151617 |
- <?php
- namespace App\Events;
- use App\Models\Post;
- use Illuminate\Broadcasting\InteractsWithSockets;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
- class PostPublished
- {
- use Dispatchable, InteractsWithSockets, SerializesModels;
- public function __construct(public Post $post)
- {
- }
- }
|