12 lines
212 B
PHP
12 lines
212 B
PHP
<?php
|
|
|
|
class IncidentTemplate extends Eloquemt {
|
|
public static function boot() {
|
|
parent::boot();
|
|
|
|
self::on('saving', function($template) {
|
|
$template->slug = Str::slug($template->name);
|
|
});
|
|
}
|
|
}
|