Added blog, pages, menu, category
This commit is contained in:
32
app/Models/Blog.php
Normal file
32
app/Models/Blog.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
|
||||
class Blog extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'post',
|
||||
'slug',
|
||||
'content',
|
||||
'meta',
|
||||
'custom_header',
|
||||
'post_image',
|
||||
'is_published',
|
||||
'category_id',
|
||||
];
|
||||
|
||||
protected $casts = [
|
||||
'meta' => 'json'
|
||||
];
|
||||
|
||||
public function category(): BelongsTo
|
||||
{
|
||||
return $this->belongsTo(Category::class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user