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.
57 lines
1.2 KiB
PHP
57 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class MeetupEvent extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $connection = 'einundzwanzig';
|
|
|
|
/** @var list<string> */
|
|
protected $fillable = [
|
|
'start',
|
|
'location',
|
|
'description',
|
|
'link',
|
|
'might_attendees',
|
|
'nostr_status',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'id' => 'integer',
|
|
'meetup_id' => 'integer',
|
|
'start' => 'datetime',
|
|
'attendees' => 'array',
|
|
'might_attendees' => 'array',
|
|
];
|
|
|
|
protected static function booted()
|
|
{
|
|
static::creating(function ($model) {
|
|
if (! $model->created_by) {
|
|
$model->created_by = auth()->id();
|
|
}
|
|
});
|
|
}
|
|
|
|
public function createdBy(): BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class, 'created_by');
|
|
}
|
|
|
|
public function meetup(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Meetup::class);
|
|
}
|
|
}
|