Files
HospitalOborniki/app/Models/Price.php
2025-05-10 16:52:45 +02:00

12 lines
198 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\MorphTo;
class Price extends Model
{
protected $fillable = ['attachment_id'];
}