madbob/GASdottoNG

View on GitHub
code/app/Events/SluggableCreating.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Events;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Queue\SerializesModels;

class SluggableCreating
{
    use SerializesModels;

    public $sluggable;

    public function __construct(Model $sluggable)
    {
        $this->sluggable = $sluggable;
    }
}