%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/app/Models/ |
Upload File : |
<?php
namespace App\Models;
use App\Scopes\ActiveScope;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
/**
* App\Models\ProjectNote
*
* @property int $id
* @property int|null $project_id
* @property string $title
* @property int $type
* @property int|null $client_id
* @property int $is_client_show
* @property int $ask_password
* @property string $details
* @property int|null $added_by
* @property int|null $last_updated_by
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ProjectUserNote[] $members
* @property-read \App\Models\Project $project
* @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ProjectUserNote[] $noteUsers
* @property-read int|null $members_count
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote query()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereAddedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereAskPassword($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereClientId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereDetails($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereIsClientShow($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereLastUpdatedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereType($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectNote whereUpdatedAt($value)
* @property-read int|null $note_users_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\MentionUser> $mentionNote
* @property-read int|null $mention_note_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\User> $mentionUser
* @property-read int|null $mention_user_count
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\MentionUser> $mentionNote
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\User> $mentionUser
* @mixin \Eloquent
*/
class ProjectNote extends BaseModel
{
public function members(): HasMany
{
return $this->hasMany(ProjectUserNote::class, 'project_note_id');
}
public function project(): BelongsTo
{
return $this->belongsTo(Project::class, 'project_id');
}
public function noteUsers(): BelongsToMany
{
return $this->belongsToMany(User::class, 'project_user_notes');
}
public function mentionUser(): BelongsToMany
{
return $this->belongsToMany(User::class, 'mention_users')->withoutGlobalScope(ActiveScope::class)->using(MentionUser::class);
}
public function mentionNote(): HasMany
{
return $this->hasMany(MentionUser::class, 'project_note_id');
}
}