shell bypass 403

UnknownSec Shell


name : Checkout.php
<?php

namespace Modules\Payment\Entities;

use App\User;
use Carbon\Carbon;
use App\BillingDetails;
use App\Traits\Tenantable;
use Modules\Coupons\Entities\Coupon;
use Illuminate\Database\Eloquent\Model;
use Modules\CourseSetting\Entities\Package;
use Rennokki\QueryCache\Traits\QueryCacheable;
use Modules\CourseSetting\Entities\CourseEnrolled;

class Checkout extends Model
{

use Tenantable;

    protected $fillable = ['status'];

    protected $appends = ['dateFormat'];


    public function coupon()
    {

        return $this->belongsTo(Coupon::class, 'coupon_id')->withDefault();
    }

    public function package()
    {

        return $this->belongsTo(Package::class, 'package_id')->withDefault();
    }

    public function user()
    {

        return $this->belongsTo(User::class, 'user_id')->withDefault();
    }

    public function getdateFormatAttribute()
    {
        return Carbon::parse($this->created_at)->isoformat('Do MMMM Y');
    }

    public function courses()
    {
        return $this->hasMany(CourseEnrolled::class, 'tracking', 'tracking');
    }

    public function bill()
    {
        return $this->belongsTo(BillingDetails::class, 'tracking', 'tracking_id')->withDefault();

    }

    public function carts()
    {
        return $this->hasMany(Cart::class, 'tracking', 'tracking');
    }

    public function billing()
    {
        return $this->belongsTo(BillingDetails::class,'billing_detail_id');
    }
}

© 2025 UnknownSec
afwwrfwafr45458465
Password