25 lines
394 B
PHP
25 lines
394 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Service extends Model
|
|
{
|
|
protected $fillable = [
|
|
'category_id',
|
|
'name',
|
|
'description',
|
|
'photo',
|
|
];
|
|
|
|
protected $casts = [
|
|
'photo' => 'array',
|
|
];
|
|
|
|
public function category()
|
|
{
|
|
return $this->belongsTo(ServiceCategory::class, 'category_id');
|
|
}
|
|
}
|