Added News page

This commit is contained in:
amikhaylov
2026-05-15 13:56:57 +03:00
parent 18a843b710
commit 4886612f7f
9 changed files with 172 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
<?php
namespace App\Models\ORM;
use Illuminate\Database\Eloquent\Model;
class News extends Model
{
protected $table = 'allNewsView';
protected $primaryKey = 'id';
}