Your IP : 3.15.225.164


Current Path : /home/lentoinv/api.lentoria.com/app/Models/
Upload File :
Current File : /home/lentoinv/api.lentoria.com/app/Models/Topic.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Topic extends Model
{
    use HasFactory;

    protected $guarded = [];
    public function category()
    {
        return $this->belongsTo(Category::class);
    }
}

?>