* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ declare(strict_types=1); namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\SoftDeletes; use AllowDynamicProperties; #[AllowDynamicProperties] final class Participant extends Model { use SoftDeletes; /** * The attributes that aren't mass assignable. * * @var string[] */ protected $guarded = []; /** * Get the user associated the participant. * * @return BelongsTo */ public function user(): BelongsTo { return $this->belongsTo(User::class); } /** * Get the conversation associated with the participant. * * @return BelongsTo */ public function conversation(): BelongsTo { return $this->belongsTo(Conversation::class); } /** * Get all of the messages for this participant. * * @return HasMany */ public function messages(): HasMany { return $this->hasMany(PrivateMessage::class, 'conversation_id', 'conversation_id'); } }