12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
|
|
namespace App\Model\kb;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Footer extends Model
|
|
{
|
|
protected $table = 'footer';
|
|
protected $fillable = ['title', 'footer'];
|
|
}
|