2024-06-03 09:08:40 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2024-11-04 07:25:49 +00:00
|
|
|
use App\Models\Casts\UTF8StringOrNull;
|
2024-06-05 11:57:16 +00:00
|
|
|
|
2024-06-03 09:08:40 +00:00
|
|
|
class Tearline extends Model
|
|
|
|
{
|
|
|
|
//use HasFactory;
|
|
|
|
|
|
|
|
public const UPDATED_AT = NULL;
|
|
|
|
|
2024-06-05 11:57:16 +00:00
|
|
|
protected $casts = [
|
|
|
|
'value' => UTF8StringOrNull::class,
|
|
|
|
];
|
2024-06-03 09:08:40 +00:00
|
|
|
|
|
|
|
public function complete(): string
|
|
|
|
{
|
|
|
|
return sprintf('--- %s',$this->value);
|
|
|
|
}
|
|
|
|
}
|