'boolean', 'required' => 'boolean', 'private' => 'boolean', 'active' => 'boolean', ]; public static $rules = [ 'name' => 'required', 'description' => 'nullable', ]; /** * Get the slug so we can use it in forms * * @return string */ public function getSlugAttribute(): string { return str_slug($this->name, '_'); } }