@include('Partials.sidebar')
@include('Partials.header')

Walkthrough

  1. Walkthrough
{{-- Flash Messages --}} @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif {{-- ── Upload cards ── --}}
Add Single Walkthrough
YouTube or any video URL
@csrf
Bulk Import Walkthroughs
Columns: project_id, title, walkthrough_url   Download template
@csrf
{{-- ── Walkthrough Table ──────────────────────── --}}
All Walkthroughs {{ $walkthroughs->count() }}
@forelse($walkthroughs as $i => $wt) @empty @endforelse
# Project Title URL Added Actions
{{ $i + 1 }} {{ $wt->projects->project_name ?? '—' }} {{ $wt->title ?? '—' }} {{ Str::limit($wt->walkthrough_url, 40) }} {{ $wt->created_at->format('d M Y') }}
@csrf @method('DELETE')
No walkthroughs added yet.
@include('Partials.footer')