File manager - Edit - /var/www/payraty/hris/app/Models/LoginDetail.php
Back
<?php namespace App\Models; use Illuminate\Support\Facades\Auth; use App\Scopes\OrganisationScope; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class LoginDetail extends Model { use HasFactory; protected $fillable = [ 'user_id', 'ip', 'date', 'Details', 'created_by', 'organisation_id', ]; public function getUSerEmployee($id) { $employee = Employee::where('user_id', '=', $id)->first(); return $employee; } public static function employeeIdFormat($number) { $settings = Utility::settings(); return $settings["employee_prefix"] . sprintf("%05d", $number); } public function employees() { return $this->hasOne('App\Models\Employee', 'id', 'employee_id'); } protected static function booted() { static::addGlobalScope(new OrganisationScope); static::creating(function ($model) { if (Auth::check()) { $model->organisation_id = Auth::user()->organisation_id; } }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.39 |
proxy
|
phpinfo
|
Settings