<?php
namespace App\Events;
use App\Models\News;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ArtistPostsNews
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $news_post;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(News $news_post)
{
$this->news_post = $news_post;
}
}