⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.37
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
vhosts
/
raqmix.net
/
testpos.raqmix.net
/
app
/
Edit File: Variation.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Variation extends Model { use SoftDeletes; /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = ['id']; /** * The attributes that should be cast to native types. * * @var array */ protected $casts = [ 'combo_variations' => 'array', ]; public function product_variation() { return $this->belongsTo(\App\ProductVariation::class); } public function product() { return $this->belongsTo(\App\Product::class, 'product_id'); } /** * Get the sell lines associated with the variation. */ public function sell_lines() { return $this->hasMany(\App\TransactionSellLine::class); } /** * Get the location wise details of the the variation. */ public function variation_location_details() { return $this->hasMany(\App\VariationLocationDetails::class); } /** * Get Selling price group prices. */ public function group_prices() { return $this->hasMany(\App\VariationGroupPrice::class, 'variation_id'); } public function media() { return $this->morphMany(\App\Media::class, 'model'); } public function getFullNameAttribute() { $name = $this->product->name; if ($this->product->type == 'variable') { $name .= ' - '.$this->product_variation->name.' - '.$this->name; } $name .= ' ('.$this->sub_sku.')'; return $name; } }
Simpan