%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 Illuminate\Database\Eloquent\Relations\BelongsTo;
/**
* App\Models\ProjectRating
*
* @property int $id
* @property int $project_id
* @property float $rating
* @property string|null $comment
* @property int $user_id
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property int|null $added_by
* @property int|null $last_updated_by
* @property-read \App\Models\Project $project
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating query()
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating whereAddedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating whereComment($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating whereLastUpdatedBy($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating whereProjectId($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating whereRating($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|ProjectRating whereUserId($value)
* @mixin \Eloquent
*/
class ProjectRating extends BaseModel
{
public function project(): BelongsTo
{
return $this->belongsTo(Project::class);
}
}