This commit is contained in:
2025-06-06 17:53:01 +05:45
parent 9ceb854168
commit 793f6ec7da
15 changed files with 739 additions and 3 deletions

23
app/Models/blog.php Normal file
View 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'
];
}