JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "Blog.php"

Full Path: /home/u735268861/domains/palsarh.in/public_html/app/Models/Blog.php
File size: 421 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Blog extends Model
{
    use HasFactory;

    protected $fillable = [
        'user_id', 'category_slug', 'title', 'slug', 'description', 'thumbnail', 'banner', 'keywords', 'is_popular', 'status',
    ];


    public function user() {
        return $this->belongsTo(User::class);
    }
}