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