mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
39 lines
590 B
PHP
39 lines
590 B
PHP
<?php
|
|
|
|
namespace App\Transformers;
|
|
|
|
use League\Fractal\TransformerAbstract;
|
|
|
|
class InvoiceTransformer extends TransformerAbstract
|
|
{
|
|
/**
|
|
* List of resources to automatically include
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $defaultIncludes = [
|
|
//
|
|
];
|
|
|
|
/**
|
|
* List of resources possible to include
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $availableIncludes = [
|
|
//
|
|
];
|
|
|
|
/**
|
|
* A Fractal transformer.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function transform()
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
}
|