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