| DIR: /home/u358511784/domains/texindcolors.com/public_html/app/Models/ |
| Current File : /home/u358511784/domains/texindcolors.com/public_html/app/Models/Background.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Background extends Model
{
protected $primaryKey = 'id';
protected $table = 'background_master';
public $timestamps = false;
protected $fillable = [
'title',
'image',
'status'
];
}
|