Initial commit
This commit is contained in:
21
app/Models/Footer.php
Normal file
21
app/Models/Footer.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Footer extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $table = 'footer';
|
||||
|
||||
protected $fillable = [
|
||||
'links'
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'links' => 'array',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user