for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Builder;
/**
* Class PhotoReport.
*/
class PhotoReport extends ChocolateyModel
{
* Disable Timestamps.
*
* @var bool
public $timestamps = false;
* The table associated with the model.
* @var string
protected $table = 'chocolatey_users_photos_reported';
* Primary Key of the Table.
protected $primaryKey = 'id';
* The Appender(s) of the Model.
* @var array
protected $appends = ['reason_category'];
* Store a new Photo Report.
* @param int $photoId
* @param int $reasonId
* @param int $reportedBy
* @return PhotoReport
public function store(int $photoId, int $reasonId, int $reportedBy): PhotoReport
$this->attributes['photo_id'] = $photoId;
$this->attributes['reason_id'] = $reasonId;
$this->attributes['reported_by'] = $reportedBy;
$this->attributes['approved'] = 0;
$this->timestamps = false;
$this->save();
return $this;
}
* Get the Report Category Content.
* @return Builder
public function getReasonCategoryAttribute()
return PhotoReportCategory::query()->where('report_category', $this->attributes['reason_id'])->first();