JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "BlogComment.php"
Full Path: /var/www/laravel_filter/Modules/Blog/Entities/BlogComment.php
File size: 436 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Modules\Blog\Entities;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class BlogComment extends Model
{
use HasFactory;
protected $fillable = [];
protected static function newFactory()
{
return \Modules\Blog\Database\factories\BlogCommentFactory::new();
}
public function blog(){
return $this->belongsTo(Blog::class);
}
}