{{-- Flash Messages --}}
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
@endif
{{-- ── Upload cards ── --}}
Add Single Walkthrough
YouTube or any video URL
{{-- ── Walkthrough Table ──────────────────────── --}}
| # |
Project |
Title |
URL |
Added |
Actions |
@forelse($walkthroughs as $i => $wt)
| {{ $i + 1 }} |
{{ $wt->projects->project_name ?? '—' }}
|
{{ $wt->title ?? '—' }}
|
{{ Str::limit($wt->walkthrough_url, 40) }}
|
{{ $wt->created_at->format('d M Y') }}
|
|
@empty
|
No walkthroughs added yet.
|
@endforelse