module updated

This commit is contained in:
2024-04-10 15:21:30 +05:45
parent c1a81191fa
commit 3267e212f7
71 changed files with 1390 additions and 1812 deletions

20
app/Models/Districts.php Normal file
View File

@ -0,0 +1,20 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Districts extends Model
{
use HasFactory;
protected $table = 'tbl_districts';
protected $primaryKey = 'district_id';
protected $fillable = [
'district_name',
'countries_id',
'provinces_id',
'status',
];
}