• File: District.php
  • Full Path: /var/www/sandbox/app/District.php
  • Date Modified: 04/15/2024 8:53 PM
  • File size: 336 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class District extends Model
{
    use HasFactory;

    protected $fillable = [
        'name',
        'provinces_id'
    ];

    function provinces()
    {
        return $this->belongsTo(Province::class);
    }
}