PropertyTrackFileType.php
369 Bytes
<?php
namespace App\Models\Legal;
use App\Models\BaseModel;
class PropertyTrackFileType extends BaseModel
{
    protected $updated_at = false;
    protected $guarded = [];
    /**
     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
     */
    public function type()
    {
        return $this->belongsTo(PropertyFileType::class,'p_type_id');
    }
}