| Server IP : 14.225.204.176 / Your IP : 216.73.216.252 Web Server : nginx/1.24.0 System : Linux nodejs-ybgk 6.8.0-40-generic #40-Ubuntu SMP PREEMPT_DYNAMIC Fri Jul 5 10:34:03 UTC 2024 x86_64 User : root ( 0) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/php/home-services/app/Models/ |
Upload File : |
<?php
/*
* File name: WalletTransaction.php
* Last modified: 2021.08.10 at 18:03:35
* Author: SmarterVision - https://codecanyon.net/user/smartervision
* Copyright (c) 2021
*/
namespace App\Models;
use App\Events\WalletTransactionCreatedEvent;
use App\Events\WalletTransactionCreatingEvent;
use App\Events\WalletTransactionEvent;
use App\Traits\Uuids;
use Eloquent as Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\MorphMany;
/**
* Class WalletTransaction
* @package App\Models
* @version August 8, 2021, 3:57 pm CEST
*
* @property Wallet wallet
* @property User user
* @property double amount
* @property string description
* @property string action
* @property string wallet_id
* @property integer user_id
*/
class WalletTransaction extends Model
{
use Uuids;
/**
* Validation rules
*
* @var array
*/
public static $rules = [
'amount' => 'required|numeric|min:0.01|max:99999999,99',
'description' => 'nullable|max:255',
'action' => ["required", "regex:/^(credit|debit)$/i"],
'wallet_id' => 'required|exists:wallets,id',
];
public $table = 'wallet_transactions';
public $fillable = [
'amount',
'description',
'action',
'wallet_id',
'user_id'
];
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts = [
'amount' => 'double',
'description' => 'string',
'action' => 'string'
];
/**
* New Attributes
*
* @var array
*/
protected $appends = [
'custom_fields',
];
/**
* The event map for the model.
*
* @var array
*/
protected $dispatchesEvents = [
'creating' => WalletTransactionCreatingEvent::class,
'created' => WalletTransactionCreatedEvent::class,
];
public function getCustomFieldsAttribute(): array
{
$hasCustomField = in_array(static::class, setting('custom_field_models', []));
if (!$hasCustomField) {
return [];
}
$array = $this->customFieldsValues()
->join('custom_fields', 'custom_fields.id', '=', 'custom_field_values.custom_field_id')
->where('custom_fields.in_table', '=', true)
->get()->toArray();
return convertToAssoc($array, 'name');
}
public function customFieldsValues(): MorphMany
{
return $this->morphMany('App\Models\CustomFieldValue', 'customizable');
}
/**
* @return BelongsTo
**/
public function wallet(): BelongsTo
{
return $this->belongsTo(Wallet::class, 'wallet_id', 'id');
}
/**
* @return BelongsTo
**/
public function user(): BelongsTo
{
return $this->belongsTo(User::class, 'user_id', 'id');
}
}