/
home
/
sjslayjy
/
public_html
/
theweavenest
/
app
/
Models
/
Admin
/
Upload File
HOME
<?php namespace App\Models\Admin; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Post extends Model { use HasFactory; /** * The table associated with the model. * * @var string */ protected $table = 'posts'; }