File manager - Edit - /var/www/payraty/hris/app/Models/EmailTemplate.php
Back
<?php namespace App\Models; use Illuminate\Support\Facades\Auth; use App\Scopes\OrganisationScope; use Illuminate\Database\Eloquent\Model; class EmailTemplate extends Model { protected $fillable = [ 'name', 'from', 'slug', 'created_by', 'organisation_id', ]; public function template() { return $this->hasOne('App\Models\UserEmailTemplate', 'template_id', 'id')->where('user_id', '=', Auth::user()->id); } private static $emailTemplate = null; public static function getemailTemplate() { if (self::$emailTemplate === null) { self::$emailTemplate = EmailTemplate::first(); } return self::$emailTemplate; } 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.22 |
proxy
|
phpinfo
|
Settings