LAB ARCHIVES

History of your manual generations (Prompts, Images, Videos).

@if (session()->has('message')) @endif
@forelse($items as $item)
{{ $item->type }}

{{ $item->title ?? 'Untitled Generation' }}

{{ $item->created_at->format('d M Y • H:i') }} {{ $item->image_model ?? $item->video_model ?? 'AI-Model' }}
@if($item->description)
Description / Caption
{{Str::limit($item->description, 300)}}
@endif @if(!empty($item->hashtags))
Hashtags
@foreach((array)$item->hashtags as $tag) {{ $tag }} @endforeach
@endif @if(!empty($item->meta_data))
View Metadata
{{ json_encode($item->meta_data, JSON_PRETTY_PRINT) }}
@endif
{{-- --- [FITUR BARU] MEDIA PREVIEW --- --}} @if($item->result_path)
@if($item->type == 'image')
IMAGE
@elseif($item->type == 'video')
VIDEO
@endif ⬇ Download
@endif {{-- --------------------------------- --}}
@if($item->image_prompt)
Image Prompt

{{ $item->image_prompt }}

@endif @if($item->video_prompt)
Video Prompt

{{ $item->video_prompt }}

@endif
ID: #{{ $item->id }}
@empty

No history found

Your generated assets will appear here.

@endforelse
{{ $items->links() }}