| Current Path : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Http/Resources/ |
| Current File : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Http/Resources/DiningTableResource.php |
<?php
namespace App\Http\Resources;
use Illuminate\Http\Resources\Json\JsonResource;
class DiningTableResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function toArray($request): array
{
return [
"id" => $this->id,
"name" => $this->name,
"slug" => $this->slug,
"size" => $this->size,
"qr_code" => asset($this->qr_code),
"branch_id" => $this->branch_id,
"branch_name" => optional($this->branch)->name,
"status" => $this->status,
"qr" => $this->qr,
"branch_address" => $this->branch->address,
"branch_phone" => $this->branch->phone,
];
}
}