%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 Froiden\RestAPI\ApiModel;
/**
* App\Models\BaseModel
*
* @property-read mixed $icon
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel query()
* @mixin \Eloquent
*/
class BaseModel extends ApiModel
{
// It will be override
protected $dates = [];
public static function options($items, $group = null, $columnName = null): string
{
$options = '<option value="">--</option>';
foreach ($items as $item) {
$name = is_null($columnName) ? $item->name : $item->{$columnName};
$selected = (!is_null($group) && ($item->id == $group->id)) ? 'selected' : '';
$options .= '<option ' . $selected . ' value="' . $item->id . '"> ' . ($name) . ' </option>';
}
return $options;
}
public static function clickAbleLink($route, $title, $other = null)
{
return '<div class="media align-items-center">
<div class="media-body">
<h5 class="mb-0 f-13 text-darkest-grey"><a href="' . $route . '" class="openRightModal">' . $title . '</a></h5>
<p class="mb-0">' . $other . '</p>
</div>
</div>';
}
// Added this for $dates
public function getDates()
{
if (!$this->usesTimestamps()) {
return $this->dates;
}
$defaults = [
$this->getCreatedAtColumn(),
$this->getUpdatedAtColumn(),
];
return array_unique(array_merge($this->dates, $defaults));
}
}