1
0
mirror of https://github.com/robonen/education-project.git synced 2026-03-20 02:44:31 +00:00
Files
education-project/app/Models/NewsFile.php
2020-12-15 16:35:50 +07:00

13 lines
216 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class NewsFile extends Model
{
use HasFactory;
protected $table = 'news_files';
}