Change namespace

This commit is contained in:
Darko Gjorgjijoski
2024-01-27 23:53:20 +01:00
parent aef8b228b8
commit 6b80b5f48d
550 changed files with 3398 additions and 3278 deletions

View File

@@ -1,11 +1,11 @@
<?php
namespace Crater\Http\Controllers\V1\Customer\Payment;
namespace InvoiceShelf\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 InvoiceShelf\Http\Controllers\Controller;
use InvoiceShelf\Http\Resources\Customer\PaymentResource;
use InvoiceShelf\Models\Company;
use InvoiceShelf\Models\Payment;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
@@ -42,7 +42,7 @@ class PaymentsController extends Controller
/**
* Display the specified resource.
*
* @param \Crater\Models\Payment $payment
* @param \InvoiceShelf\Models\Payment $payment
* @return \Illuminate\Http\Response
*/
public function show(Company $company, $id)