State.php 332 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Shop\States;
  3. use App\Shop\Countries\Country;
  4. use Illuminate\Database\Eloquent\Model;
  5. class State extends Model
  6. {
  7. public $fillable = [
  8. 'state',
  9. 'state_code'
  10. ];
  11. public $timestamps = false;
  12. public function country()
  13. {
  14. return $this->belongsTo(Country::class);
  15. }
  16. }