12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- class Report extends Model
- {
- protected $casts = [
- 'admin_seen' => 'datetime'
- ];
- protected $guarded = [];
- public function url()
- {
- return url('/i/admin/reports/show/'.$this->id);
- }
- public function reporter()
- {
- return $this->belongsTo(Profile::class, 'profile_id');
- }
- public function reported()
- {
- $class = $this->object_type;
- switch ($class) {
- case 'App\Status':
- $column = 'id';
- break;
- default:
- $class = 'App\Status';
- $column = 'id';
- break;
- }
- return (new $class())->where($column, $this->object_id)->first();
- }
- public function status()
- {
- return $this->belongsTo(Status::class, 'object_id');
- }
- public function reportedUser()
- {
- return $this->belongsTo(Profile::class, 'reported_profile_id', 'id');
- }
- }
|