mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-02 13:21:02 +00:00
* refactor: stabilize model identities for domain migration * refactor: extract module platform context * refactor: assign models to domain contexts * refactor: extract ai platform context * refactor: extract storage platform context * refactor: extract mail platform context * refactor: extract pdf platform context * refactor: extract operations platform context * refactor: move installation into operations platform * refactor: extract money domain context * refactor: extract taxation domain context * refactor: extract catalog domain context * refactor: extract metadata domain context * refactor: extract reporting domain context * refactor: extract purchases domain context * refactor: extract receivables domain context * refactor: extract accounts domain context * refactor: complete reporting statement boundary * refactor: extract contacts domain context * refactor: extract sales domain context * refactor: remove legacy application layers * fix: migrate legacy bouncer role identities
100 lines
2.6 KiB
PHP
100 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Receivables\Http\Controllers\Company;
|
|
|
|
use App\Domains\Receivables\Http\Requests\PaymentMethodRequest;
|
|
use App\Domains\Receivables\Http\Resources\PaymentMethodResource;
|
|
use App\Domains\Receivables\Models\PaymentMethod;
|
|
use App\Platform\Http\Controller;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Response;
|
|
|
|
class PaymentMethodsController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function index(Request $request)
|
|
{
|
|
$this->authorize('viewAny', PaymentMethod::class);
|
|
|
|
$limit = $request->has('limit') ? $request->limit : 5;
|
|
|
|
$paymentMethods = PaymentMethod::applyFilters($request->all())
|
|
->where('type', PaymentMethod::TYPE_GENERAL)
|
|
->whereCompany()
|
|
->latest()
|
|
->paginateData($limit);
|
|
|
|
return PaymentMethodResource::collection($paymentMethods);
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*
|
|
* @param Request $request
|
|
* @return Response
|
|
*/
|
|
public function store(PaymentMethodRequest $request)
|
|
{
|
|
$this->authorize('create', PaymentMethod::class);
|
|
|
|
$paymentMethod = PaymentMethod::create($request->getPaymentMethodPayload());
|
|
|
|
return new PaymentMethodResource($paymentMethod);
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function show(PaymentMethod $paymentMethod)
|
|
{
|
|
$this->authorize('view', $paymentMethod);
|
|
|
|
return new PaymentMethodResource($paymentMethod);
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*
|
|
* @param Request $request
|
|
* @return Response
|
|
*/
|
|
public function update(PaymentMethodRequest $request, PaymentMethod $paymentMethod)
|
|
{
|
|
$this->authorize('update', $paymentMethod);
|
|
|
|
$paymentMethod->update($request->getPaymentMethodPayload());
|
|
|
|
return new PaymentMethodResource($paymentMethod);
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @return Response
|
|
*/
|
|
public function destroy(PaymentMethod $paymentMethod)
|
|
{
|
|
$this->authorize('delete', $paymentMethod);
|
|
|
|
if ($paymentMethod->payments()->exists()) {
|
|
return respondJson('payments_attached', 'Payments Attached.');
|
|
}
|
|
|
|
if ($paymentMethod->expenses()->exists()) {
|
|
return respondJson('expenses_attached', 'Expenses Attached.');
|
|
}
|
|
|
|
$paymentMethod->delete();
|
|
|
|
return response()->json([
|
|
'success' => 'Payment method deleted successfully',
|
|
]);
|
|
}
|
|
}
|