<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;

class PostImage extends Model
{
    protected $table = 'post_image';
    use SoftDeletes;

    public $timestamps = true;

    protected $fillable = [
        'post_id',
        'image',
    ];
    protected $dates = [
        'deleted_at',
        'updated_at',
        'created_at',
    ];
}
