| Server IP : 14.225.204.176 / Your IP : 216.73.216.169 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: EProviderPayout.php
* Last modified: 2021.03.23 at 18:19:03
* Author: SmarterVision - https://codecanyon.net/user/smartervision
* Copyright (c) 2021
*/
namespace App\Models;
use Eloquent as Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Support\Facades\Date;
/**
* Class EProviderPayout
* @package App\Models
* @version January 30, 2021, 11:17 am UTC
*
* @property EProvider eProvider
* @property integer e_provider_id
* @property string method
* @property double amount
* @property Date paid_date
* @property string note
*/
class EProviderPayout extends Model
{
/**
* Validation rules
*
* @var array
*/
public static $rules = [
'e_provider_id' => 'required|exists:e_providers,id',
'method' => 'required',
'amount' => 'required|numeric|min:0.01|max:99999999,99'
];
public $table = 'e_provider_payouts';
public $fillable = [
'e_provider_id',
'method',
'amount',
'paid_date',
'note'
];
/**
* The attributes that should be casted to native types.
*
* @var array
*/
protected $casts = [
'e_provider_id' => 'integer',
'method' => 'string',
'amount' => 'double',
'paid_date' => 'datetime',
'note' => 'string'
];
/**
* New Attributes
*
* @var array
*/
protected $appends = [
'custom_fields',
];
public function getCustomFieldsAttribute()
{
$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()
{
return $this->morphMany('App\Models\CustomFieldValue', 'customizable');
}
/**
* @return BelongsTo
**/
public function eProvider(): BelongsTo
{
return $this->belongsTo(EProvider::class, 'e_provider_id', 'id');
}
}