ok

Mini Shell

Direktori : /home2/selectio/public_html/limpiar.in.net/app/Http/Resources/V2/Seller/
Upload File :
Current File : /home2/selectio/public_html/limpiar.in.net/app/Http/Resources/V2/Seller/SellerWithdrawResource.php

<?php

namespace App\Http\Resources\V2\Seller;

use Illuminate\Http\Resources\Json\JsonResource;

class SellerWithdrawResource extends JsonResource
{
    /**
     * Transform the resource into an array.
     *
     * @param  \Illuminate\Http\Request  $request
     * @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
     */
    public function toArray($request)
    {
        $status = translate('Paid');
        if($this->status == 0) {
            $status = translate('Pending');
        }
        return [
            'id' => $this->id,
            'amount' => format_price($this->amount),
            'status' =>  $status,
            'created_at' => date('d-m-Y', strtotime($this->created_at)),
        ];
    }
}

Zerion Mini Shell 1.0