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