Files
roxane/app/Models/Service.php
2025-10-22 17:09:48 +02:00

22 lines
367 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Service extends Model
{
protected $fillable = [
'identifier',
'name',
'description',
'url',
'icon',
];
public static function getAttributeLabel(string $attribute): string
{
return __('services.fields.' . $attribute);
}
}