mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-06-01 23:45:36 +00:00
1d2a8ed456
- Removed unnecessary `city_id` and `created_by` attributes from `Meetup` model. - Updated multiple dependencies in `composer.lock`, including `guzzlehttp/guzzle`, `laravel/framework`, and other libraries to the latest versions. - Verified all updates maintain compatibility with existing functionality.
35 lines
649 B
PHP
35 lines
649 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
class Country extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $connection = 'einundzwanzig';
|
|
|
|
/** @var list<string> */
|
|
protected $fillable = [
|
|
'name',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'id' => 'integer',
|
|
'language_codes' => 'array',
|
|
];
|
|
|
|
public function cities(): HasMany
|
|
{
|
|
return $this->hasMany(City::class);
|
|
}
|
|
}
|