mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			107 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Crater\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Factories\HasFactory;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class PaymentMethod extends Model
 | 
						|
{
 | 
						|
    use HasFactory;
 | 
						|
 | 
						|
    protected $guarded = [
 | 
						|
        'id'
 | 
						|
    ];
 | 
						|
 | 
						|
    public const TYPE_GENERAL = 'GENERAL';
 | 
						|
    public const TYPE_MODULE = 'MODULE';
 | 
						|
 | 
						|
    protected $casts = [
 | 
						|
        'settings' => 'array',
 | 
						|
        'use_test_env' => 'boolean'
 | 
						|
    ];
 | 
						|
 | 
						|
    public function setSettingsAttribute($value)
 | 
						|
    {
 | 
						|
        $this->attributes['settings'] = json_encode($value);
 | 
						|
    }
 | 
						|
 | 
						|
    public function payments()
 | 
						|
    {
 | 
						|
        return $this->hasMany(Payment::class);
 | 
						|
    }
 | 
						|
 | 
						|
    public function expenses()
 | 
						|
    {
 | 
						|
        return $this->hasMany(Expense::class);
 | 
						|
    }
 | 
						|
 | 
						|
    public function company()
 | 
						|
    {
 | 
						|
        return $this->belongsTo(Company::class);
 | 
						|
    }
 | 
						|
 | 
						|
    public function scopeWhereCompanyId($query, $id)
 | 
						|
    {
 | 
						|
        $query->where('company_id', $id);
 | 
						|
    }
 | 
						|
 | 
						|
    public function scopeWhereCompany($query)
 | 
						|
    {
 | 
						|
        $query->where('company_id', request()->header('company'));
 | 
						|
    }
 | 
						|
 | 
						|
    public function scopeWherePaymentMethod($query, $payment_id)
 | 
						|
    {
 | 
						|
        $query->orWhere('id', $payment_id);
 | 
						|
    }
 | 
						|
 | 
						|
    public function scopeWhereSearch($query, $search)
 | 
						|
    {
 | 
						|
        $query->where('name', 'LIKE', '%'.$search.'%');
 | 
						|
    }
 | 
						|
 | 
						|
    public function scopeApplyFilters($query, array $filters)
 | 
						|
    {
 | 
						|
        $filters = collect($filters);
 | 
						|
 | 
						|
        if ($filters->get('method_id')) {
 | 
						|
            $query->wherePaymentMethod($filters->get('method_id'));
 | 
						|
        }
 | 
						|
 | 
						|
        if ($filters->get('company_id')) {
 | 
						|
            $query->whereCompany($filters->get('company_id'));
 | 
						|
        }
 | 
						|
 | 
						|
        if ($filters->get('search')) {
 | 
						|
            $query->whereSearch($filters->get('search'));
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    public function scopePaginateData($query, $limit)
 | 
						|
    {
 | 
						|
        if ($limit == 'all') {
 | 
						|
            return $query->get();
 | 
						|
        }
 | 
						|
 | 
						|
        return $query->paginate($limit);
 | 
						|
    }
 | 
						|
 | 
						|
    public static function createPaymentMethod($request)
 | 
						|
    {
 | 
						|
        $data = $request->getPaymentMethodPayload();
 | 
						|
 | 
						|
        $paymentMethod = self::create($data);
 | 
						|
 | 
						|
        return $paymentMethod;
 | 
						|
    }
 | 
						|
 | 
						|
    public static function getSettings($id)
 | 
						|
    {
 | 
						|
        $settings = PaymentMethod::find($id)
 | 
						|
            ->settings;
 | 
						|
 | 
						|
        return $settings;
 | 
						|
    }
 | 
						|
}
 |