aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/Posts/Models/TextPost.php
blob: 30593a16545a3e452039e4c542e9dd256ca3173c (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 TextPost extends Model
{
    use HasApiTokens, Notifiable;

    protected $table = "text_posts";
    
    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'description', 'text'
    ];

    public function post()
    {
        return $this->belongsTo('Api\Posts\Models\Post');
    }
}