store invoice profile

This commit is contained in:
Peter Papp
2021-04-28 07:32:40 +02:00
parent e7c4048258
commit bcf14595bf
6 changed files with 221 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace App\Http\Resources\Oasis;
use Illuminate\Http\Resources\Json\ResourceCollection;
class InvoiceProfileCollection extends ResourceCollection
{
public $collects = InvoiceProfileResource::class;
/**
* Transform the resource collection into an array.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Support\Collection
*/
public function toArray($request)
{
return $this->collection;
}
}