File manager - Edit - /home/linknsbh/proffy.online/app/Models/Country.php
Back
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\HasMany; /** * App\Models\Country * * @property int $id * @property string $name * @property string|null $short_code * @property int|null $phone_code * @property \Illuminate\Support\Carbon|null $created_at * @property \Illuminate\Support\Carbon|null $updated_at * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\State[] $states * @property-read int|null $states_count * * @method static \Database\Factories\CountryFactory factory(...$parameters) * @method static \Illuminate\Database\Eloquent\Builder|Country newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Country newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Country query() * @method static \Illuminate\Database\Eloquent\Builder|Country whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Country whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|Country whereName($value) * @method static \Illuminate\Database\Eloquent\Builder|Country wherePhoneCode($value) * @method static \Illuminate\Database\Eloquent\Builder|Country whereShortCode($value) * @method static \Illuminate\Database\Eloquent\Builder|Country whereUpdatedAt($value) * * @mixin \Eloquent */ class Country extends Model { use HasFactory; public $table = 'countries'; public $fillable = [ 'name', 'short_code', 'phone_code', ]; /** * The attributes that should be casted to native types. * * @var array */ protected $casts = [ 'id' => 'integer', 'name' => 'string', 'short_code' => 'string', 'phone_code' => 'integer', ]; /** * Validation rules * * @var array */ public static $rules = [ 'name' => 'required|string|max:170|unique:countries,name', 'short_code' => 'nullable|string|max:170|unique:countries,short_code', 'phone_code' => 'nullable|integer', ]; public function states(): HasMany { return $this->hasMany(State::class, 'country_id'); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 1.8 |
proxy
|
phpinfo
|
Settings