mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-01 21:00:58 +00:00
24 lines
524 B
PHP
24 lines
524 B
PHP
<?php
|
|
|
|
namespace App\Domains\Sales\Http\Resources\CustomerPortal;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\ResourceCollection;
|
|
|
|
/**
|
|
* A page of invoice lines for the customer portal.
|
|
*
|
|
* Namespace and class name together select the portal InvoiceItemResource as
|
|
* the member resource.
|
|
*/
|
|
class InvoiceItemCollection extends ResourceCollection
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
*/
|
|
public function toArray($request): array
|
|
{
|
|
return parent::toArray($request);
|
|
}
|
|
}
|