Last change
on this file was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 2 years ago |
|
-
Property mode
set to
100644
|
File size:
947 bytes
|
Rev | Line | |
---|
[dfae77e] | 1 | <?php
|
---|
| 2 |
|
---|
| 3 | namespace App\Models;
|
---|
| 4 |
|
---|
| 5 | use Illuminate\Database\Eloquent\Factories\HasFactory;
|
---|
| 6 | use Illuminate\Database\Eloquent\Model;
|
---|
| 7 | use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
---|
| 8 |
|
---|
| 9 | class Review extends Model
|
---|
| 10 | {
|
---|
| 11 | use HasFactory;
|
---|
| 12 |
|
---|
| 13 | protected $table = 'reviews';
|
---|
| 14 |
|
---|
| 15 | public $timestamps = false;
|
---|
| 16 |
|
---|
| 17 | /**
|
---|
| 18 | * The attributes that are mass assignable.
|
---|
| 19 | *
|
---|
| 20 | * @var array<int, string>
|
---|
| 21 | */
|
---|
| 22 | protected $fillable = [
|
---|
| 23 | 'rating',
|
---|
| 24 | 'content',
|
---|
| 25 | 'organizer_id',
|
---|
| 26 | 'artist_id',
|
---|
| 27 | ];
|
---|
| 28 |
|
---|
| 29 | /**
|
---|
| 30 | * The attributes that should be cast.
|
---|
| 31 | *
|
---|
| 32 | * @var array<string, string>
|
---|
| 33 | */
|
---|
| 34 | protected $casts = [
|
---|
| 35 | 'created_at' => 'datetime',
|
---|
| 36 | ];
|
---|
| 37 |
|
---|
| 38 | public function organizer(): BelongsTo
|
---|
| 39 | {
|
---|
| 40 | return $this->belongsTo(Organizer::class, 'organizer_id', 'user_id');
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | public function artist(): BelongsTo
|
---|
| 44 | {
|
---|
| 45 | return $this->belongsTo(Artist::class, 'artist_id', 'user_id');
|
---|
| 46 | }
|
---|
| 47 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.