mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2026-05-20 10:04:53 +00:00
cb61d9d543
🎨 Refactor `Lecturer` model to include new fields and factory usage 🔧 Update `DatabaseSeeder` to handle default seeds 🛠️ Enhance `einundzwanzig` database configuration for SQLite compatibility
43 lines
912 B
PHP
43 lines
912 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
class Vote extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
/** @var list<string> */
|
|
protected $fillable = [
|
|
'einundzwanzig_pleb_id',
|
|
'project_proposal_id',
|
|
'value',
|
|
'reason',
|
|
];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $casts = [
|
|
'id' => 'integer',
|
|
'einundzwanzig_pleb_id' => 'integer',
|
|
'project_proposal_id' => 'integer',
|
|
'value' => 'bool',
|
|
];
|
|
|
|
public function einundzwanzigPleb(): BelongsTo
|
|
{
|
|
return $this->belongsTo(EinundzwanzigPleb::class);
|
|
}
|
|
|
|
public function projectProposal(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ProjectProposal::class);
|
|
}
|
|
}
|