File manager - Edit - /home/asiatechinc/public_html/bhrhotelsindia.com/modules/User/Models/Plan.php
Back
<?php namespace Modules\User\Models; use Illuminate\Database\Eloquent\SoftDeletes; use Modules\Booking\Models\Bookable; class Plan extends Bookable { use SoftDeletes; protected $table = 'bravo_plans'; public $type = 'plan'; public function getDurationTextAttribute(){ $html = ''; switch ($this->duration_type){ case "day": if($this->duration <= 1) $html = __(":duration day",['duration'=>$this->duration]); else $html = __(":duration days",['duration'=>$this->duration]); break; case "week": if($this->duration <= 1) $html = __(":duration week",['duration'=>$this->duration]); else $html = __(":duration weeks",['duration'=>$this->duration]); break; case "month": if($this->duration <= 1) $html = __(":duration month",['duration'=>$this->duration]); else $html = __(":duration months",['duration'=>$this->duration]); break; case "year": if($this->duration <= 1) $html = __(":duration year",['duration'=>$this->duration]); else $html = __(":duration years",['duration'=>$this->duration]); break; } return $html; } public function getDurationTypeTextAttribute(){ switch ($this->duration_type){ case "day": return __("day"); break; case "week": return __("week"); break; case "month": return __("month"); break; case "year": return __("year"); break; } } public function role(){ return $this->belongsTo(Role::class,'role_id'); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings