coolify/app/Models/LocalPersistentVolume.php

47 lines
1.1 KiB
PHP
Raw Normal View History

2023-04-03 13:37:53 +02:00
<?php
namespace App\Models;
2023-05-05 12:08:38 +02:00
use Illuminate\Database\Eloquent\Casts\Attribute;
use Illuminate\Support\Str;
2023-04-03 13:37:53 +02:00
class LocalPersistentVolume extends BaseModel
{
2023-05-05 12:08:38 +02:00
protected $fillable = [
'name',
'mount_path',
'host_path',
'container_id',
'resource_id',
'resource_type',
];
2023-04-03 13:37:53 +02:00
public function application()
{
return $this->morphTo();
}
2023-05-05 12:08:38 +02:00
protected function name(): Attribute
{
return Attribute::make(
set: fn (string $value) => Str::of($value)->trim()->value,
);
}
protected function mountPath(): Attribute
{
return Attribute::make(
set: fn (string $value) => Str::of($value)->trim()->start('/')->value
);
}
protected function hostPath(): Attribute
{
return Attribute::make(
set: function (string|null $value) {
if ($value) {
return Str::of($value)->trim()->start('/')->value;
} else {
return $value;
}
}
);
}
2023-04-03 13:37:53 +02:00
}