blogs
This commit is contained in:
23
app/Models/blog.php
Normal file
23
app/Models/blog.php
Normal file
@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class blog extends Model
|
||||
{
|
||||
protected $fillable =[
|
||||
'title',
|
||||
'thumbnail',
|
||||
'banner',
|
||||
'subtitle1',
|
||||
'description1',
|
||||
'subtitle2',
|
||||
'description2',
|
||||
'image',
|
||||
'button_url',
|
||||
'button_text',
|
||||
'display_order',
|
||||
'is_published'
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user