generated from liutk/owl-admin-base
28 lines
632 B
PHP
28 lines
632 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class StoreResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'title' => $this->title,
|
|
'region' => $this->region,
|
|
'lon' => $this->lon,
|
|
'lat' => $this->lat,
|
|
'address' => $this->address,
|
|
'is_lottery_store' => $this->isLotteryStore(),
|
|
];
|
|
}
|
|
}
|