mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			99 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Crater\Http\Controllers\V1\Admin\Payment;
 | 
						|
 | 
						|
use Crater\Http\Controllers\Controller;
 | 
						|
use Crater\Http\Requests\PaymentMethodRequest;
 | 
						|
use Crater\Http\Resources\PaymentMethodResource;
 | 
						|
use Crater\Models\PaymentMethod;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
 | 
						|
class PaymentMethodsController extends Controller
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Display a listing of the resource.
 | 
						|
     *
 | 
						|
     * @return \Illuminate\Http\Response
 | 
						|
     */
 | 
						|
    public function index(Request $request)
 | 
						|
    {
 | 
						|
        $this->authorize('viewAny', PaymentMethod::class);
 | 
						|
 | 
						|
        $limit = $request->has('limit') ? $request->limit : 5;
 | 
						|
 | 
						|
        $paymentMethods = PaymentMethod::applyFilters($request->all())
 | 
						|
            ->whereCompany()
 | 
						|
            ->latest()
 | 
						|
            ->paginateData($limit);
 | 
						|
 | 
						|
        return PaymentMethodResource::collection($paymentMethods);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Store a newly created resource in storage.
 | 
						|
     *
 | 
						|
     * @param  \Illuminate\Http\Request  $request
 | 
						|
     * @return \Illuminate\Http\Response
 | 
						|
     */
 | 
						|
    public function store(PaymentMethodRequest $request)
 | 
						|
    {
 | 
						|
        $this->authorize('create', PaymentMethod::class);
 | 
						|
 | 
						|
        $paymentMethod = PaymentMethod::createPaymentMethod($request);
 | 
						|
 | 
						|
        return new PaymentMethodResource($paymentMethod);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Display the specified resource.
 | 
						|
     *
 | 
						|
     * @param  \Crater\Models\PaymentMethod  $paymentMethod
 | 
						|
     * @return \Illuminate\Http\Response
 | 
						|
     */
 | 
						|
    public function show(PaymentMethod $paymentMethod)
 | 
						|
    {
 | 
						|
        $this->authorize('view', $paymentMethod);
 | 
						|
 | 
						|
        return new PaymentMethodResource($paymentMethod);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Update the specified resource in storage.
 | 
						|
     *
 | 
						|
     * @param  \Illuminate\Http\Request  $request
 | 
						|
     * @param  \Crater\Models\PaymentMethod  $paymentMethod
 | 
						|
     * @return \Illuminate\Http\Response
 | 
						|
     */
 | 
						|
    public function update(PaymentMethodRequest $request, PaymentMethod $paymentMethod)
 | 
						|
    {
 | 
						|
        $this->authorize('update', $paymentMethod);
 | 
						|
 | 
						|
        $paymentMethod->update($request->validated());
 | 
						|
 | 
						|
        return new PaymentMethodResource($paymentMethod);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Remove the specified resource from storage.
 | 
						|
     *
 | 
						|
     * @param  \Crater\Models\PaymentMethod  $paymentMethod
 | 
						|
     * @return \Illuminate\Http\Response
 | 
						|
     */
 | 
						|
    public function destroy(PaymentMethod $paymentMethod)
 | 
						|
    {
 | 
						|
        $this->authorize('delete', $paymentMethod);
 | 
						|
 | 
						|
        $payments = $paymentMethod->payments;
 | 
						|
 | 
						|
        if ($payments->count() > 0) {
 | 
						|
            return respondJson('payments_attached', 'Payments Attached.');
 | 
						|
        }
 | 
						|
 | 
						|
        $paymentMethod->delete();
 | 
						|
 | 
						|
        return response()->json([
 | 
						|
            'success' => 'Payment method deleted successfully',
 | 
						|
        ]);
 | 
						|
    }
 | 
						|
}
 |