Files
exchange-2.0/app/Models/State.php
T

41 lines
706 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\SoftDeletes;
/**
* Class State
* @package App\Models
*
* @property int $country_id
* @property string $name
*/
class State extends AbstractModel
{
use SoftDeletes;
protected $table = 'states';
/**
* Get the attributes that should be cast.
*
* @return array<string, string>
*/
protected function casts(): array
{
return [
'deleted_at' => 'datetime',
];
}
/**
* @return HasOne
*/
public function country(): HasOne
{
return $this->hasOne(Country::class, 'country_id', 'id');
}
}