24 lines
562 B
PHP
24 lines
562 B
PHP
<?php
|
|
|
|
namespace Sarga\API\Http\Resources\Checkout;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class CartPaymentResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'method' => $this->method,
|
|
'method_title' => core()->getConfigData('sales.paymentmethods.' . $this->method . '.title'),
|
|
];
|
|
}
|
|
}
|