File "Package.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Models/Package.php
File size: 1.45 KB
MIME-type: text/x-php
Charset: utf-8

<?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);
    }

}