for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebDevEtc\BlogEtc\Events;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
use WebDevEtc\BlogEtc\Models\Category;
/**
* Class CategoryWillBeDeleted.
*/
class CategoryWillBeDeleted
{
use Dispatchable;
use SerializesModels;
Illuminate\Queue\SerializesModels
WebDevEtc\BlogEtc\Events\CategoryWillBeDeleted
$id
$relations
$class
$connection
$keyBy
/** @var Category */
public $blogEtcCategory;
public function __construct(Category $category)
$this->blogEtcCategory = $category;
}