koel/app/Events/SongsBatchUnliked.php

21 lines
354 B
PHP

<?php
namespace App\Events;
use App\Models\User;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Collection;
class SongsBatchUnliked
{
use SerializesModels;
public $songs;
public $user;
public function __construct(Collection $songs, User $user)
{
$this->songs = $songs;
$this->user = $user;
}
}