12848091a2
Update to Laravel 9 and PHP 8+ Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
64 lines
1.3 KiB
PHP
Executable File
64 lines
1.3 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Contracts\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
/**
|
|
* The Award model
|
|
*
|
|
* @property mixed id
|
|
* @property string name
|
|
* @property string description
|
|
* @property string title
|
|
* @property string image
|
|
* @property mixed ref_model
|
|
* @property mixed|null ref_model_params
|
|
*/
|
|
class Award extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
public $table = 'awards';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'description',
|
|
'image_url',
|
|
'ref_model',
|
|
'ref_model_params',
|
|
'active',
|
|
];
|
|
|
|
public static $rules = [
|
|
'name' => 'required',
|
|
'description' => 'nullable',
|
|
'image_url' => 'nullable',
|
|
'ref_model' => 'required',
|
|
'ref_model_params' => 'nullable',
|
|
'active' => 'nullable',
|
|
];
|
|
|
|
/**
|
|
* Get the referring object
|
|
*
|
|
* @param self $award
|
|
* @param User|null $user
|
|
*
|
|
* @return null
|
|
*/
|
|
public function getReference(self $award = null, User $user = null)
|
|
{
|
|
if (!$this->ref_model) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
return new $this->ref_model($award, $user);
|
|
} catch (\Exception $e) {
|
|
return;
|
|
}
|
|
}
|
|
}
|