Initial Commit
This commit is contained in:
21
app/Models/GeneralSetting.php
Normal file
21
app/Models/GeneralSetting.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class GeneralSetting extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'site_title',
|
||||
'site_email',
|
||||
'site_phone',
|
||||
'site_meta_keywords',
|
||||
'site_meta_description',
|
||||
'site_logo',
|
||||
'site_favicon',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user