blob: e6f162947c35cd471ab6a7750b8d14bd76b30fb4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
namespace Api\Posts\Models;
use Laravel\Passport\HasApiTokens;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\Model;
class MediaPost extends Model
{
use HasApiTokens, Notifiable;
protected $table = "media_posts";
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'description', 'media_path'
];
public function post()
{
return $this->belongsTo('Api\Posts\Models\Post');
}
}
|