| 12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Database\Eloquent\Relations\BelongsTo;
- class Review extends Model
- {
- protected $fillable = [
- 'user_id',
- 'application_id',
- 'review_text'
- ];
- /**
- * The attributes that should be hidden for serialization.
- *
- * @var list<string>
- */
- public function user(): BelongsTo
- {
- return $this->belongsTo(User::class);
- }
- public function application(): BelongsTo
- {
- return $this->belongsTo(Application::class);
- }
- }
|