for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Devfaysal\BangladeshGeocode\Models;
use Illuminate\Database\Eloquent\Model;
class Upazila extends Model
{
protected $guarded = [];
public function district()
return $this->belongsTo(District::Class);
}