Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
admin_panel
/
app
/
Models
:
Package.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; use App\Traits\DateFormatTrait; class Package extends Model { use HasFactory, SoftDeletes, DateFormatTrait; protected $fillable = [ 'name', 'description', 'tagline', 'student_charge', 'staff_charge', 'status', 'is_trial', 'highlight', 'rank', 'days', 'type', 'no_of_students', 'no_of_staffs', 'charges' ]; protected $appends = ['package_with_type']; protected $connection = 'mysql'; public function package_feature() { return $this->hasMany(PackageFeature::class); } /** * Get all of the subscription for the Package * * @return \Illuminate\Database\Eloquent\Relations\HasMany */ public function subscription() { return $this->hasMany(Subscription::class); } public function getPackageWithTypeAttribute() { if ($this->type == 1) { return $this->name .' #'. trans('postpaid'); } else { return $this->name .' #'. trans('prepaid'); } } public function setCreatedAtAttribute($value) { return $this->formatDateValue($value); } public function setUpdatedAtAttribute($value) { return $this->formatDateValue($value); } }