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

19 lines
331 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class ArticleNewsAttachment extends Model
{
protected $table = 'article_news_attachment';
protected $fillable = [
'article_news_id',
'attachment_id',
];
use HasFactory;
}