123456789101112131415161718192021 |
- <?php
- namespace App\Shop\States;
- use App\Shop\Countries\Country;
- use Illuminate\Database\Eloquent\Model;
- class State extends Model
- {
- public $fillable = [
- 'state',
- 'state_code'
- ];
- public $timestamps = false;
- public function country()
- {
- return $this->belongsTo(Country::class);
- }
- }
|