for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?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);
}