update deploy
This commit is contained in:
33
app/Http/Resources/StoryResource.php
Normal file
33
app/Http/Resources/StoryResource.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Resources;
|
||||
|
||||
use App\Models\Story;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
|
||||
/**
|
||||
* @mixin Story
|
||||
*/
|
||||
class StoryResource extends JsonResource
|
||||
{
|
||||
/**
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function toArray(Request $request): array
|
||||
{
|
||||
return [
|
||||
'id' => $this->id,
|
||||
'title' => $this->title,
|
||||
'badge' => $this->badge,
|
||||
'content' => $this->content,
|
||||
'image' => $this->image,
|
||||
'cta_text' => $this->cta_text,
|
||||
'cta_url' => $this->cta_url,
|
||||
'order_index' => $this->order_index,
|
||||
'is_active' => $this->is_active,
|
||||
'created_at' => $this->created_at?->toISOString(),
|
||||
'updated_at' => $this->updated_at?->toISOString(),
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user