mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 03:31:09 -04:00
62 lines
1.8 KiB
PHP
62 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace Crater\Http\Controllers\V1\Customer\Payment;
|
|
|
|
use Crater\Http\Controllers\Controller;
|
|
use Crater\Http\Resources\Customer\PaymentResource;
|
|
use Crater\Models\Company;
|
|
use Crater\Models\Payment;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class PaymentsController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function index(Request $request)
|
|
{
|
|
$limit = $request->has('limit') ? $request->limit : 10;
|
|
|
|
$payments = Payment::with(['customer', 'invoice', 'paymentMethod', 'creator'])
|
|
->whereCustomer(Auth::guard('customer')->id())
|
|
->leftJoin('invoices', 'invoices.id', '=', 'payments.invoice_id')
|
|
->applyFilters($request->only([
|
|
'payment_number',
|
|
'payment_method_id',
|
|
'orderByField',
|
|
'orderBy',
|
|
]))
|
|
->select('payments.*', 'invoices.invoice_number')
|
|
->latest()
|
|
->paginateData($limit);
|
|
|
|
return (PaymentResource::collection($payments))
|
|
->additional(['meta' => [
|
|
'paymentTotalCount' => Payment::whereCustomer(Auth::guard('customer')->id())->count(),
|
|
]]);
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*
|
|
* @param \Crater\Models\Payment $payment
|
|
* @return \Illuminate\Http\Response
|
|
*/
|
|
public function show(Company $company, $id)
|
|
{
|
|
$payment = $company->payments()
|
|
->whereCustomer(Auth::guard('customer')->id())
|
|
->where('id', $id)
|
|
->first();
|
|
|
|
if (! $payment) {
|
|
return response()->json(['error' => 'payment_not_found'], 404);
|
|
}
|
|
|
|
return new PaymentResource($payment);
|
|
}
|
|
}
|