This commit is contained in:
2024-07-03 14:41:15 +03:00
commit ec69208f05
1892 changed files with 181728 additions and 0 deletions

9
app/models/Post.php Normal file
View File

@ -0,0 +1,9 @@
<?php
namespace Models;
use \Illuminate\Database\Eloquent\Model;
class Post extends Model
{
protected $table = 'Posts';
protected $fillable = ['post', 'user_id'];
}