@extends('layouts.marketing') @section('title', 'Video Tutorials — Inventino Help Center') @section('canonical', route('help.video-tutorials')) @section('description', 'Watch step-by-step video tutorials covering every feature of Inventino — from setup and POS to reports and multi-branch management.') @php $catConfig = [ 'start' => ['label' => 'Getting Started', 'badge' => 'bg-blue-500/80', 'gradient' => 'from-blue-900/40 to-slate-900/60'], 'pos' => ['label' => 'Point of Sale', 'badge' => 'bg-green-500/80', 'gradient' => 'from-cyan-900/40 to-slate-900/60'], 'inventory' => ['label' => 'Inventory', 'badge' => 'bg-violet-500/80', 'gradient' => 'from-rose-900/40 to-slate-900/60'], 'reports' => ['label' => 'Reports', 'badge' => 'bg-cyan-500/80', 'gradient' => 'from-teal-900/40 to-slate-900/60'], 'customers' => ['label' => 'Customers', 'badge' => 'bg-pink-500/80', 'gradient' => 'from-pink-900/40 to-slate-900/60'], 'settings' => ['label' => 'Settings', 'badge' => 'bg-amber-500/80', 'gradient' => 'from-orange-900/40 to-slate-900/60'], ]; @endphp @section('content')
Help Center

Video Tutorials

Watch hands-on walkthroughs for every part of Inventino. New videos added each month.

@if($videos->isEmpty())

Video tutorials coming soon

We're currently preparing hands-on walkthroughs for every feature. Check back soon or contact us if you need immediate help.

Contact support
@else
@foreach($videos as $video) @php $cat = $video->category ?? ''; $cfg = $catConfig[$cat] ?? ['label' => ucfirst($cat), 'badge' => 'bg-slate-500/80', 'gradient' => 'from-slate-800/40 to-slate-900/60']; $thumb = $video->auto_thumbnail; $embedUrl = $video->embed_url; @endphp
@if($thumb) {{ $video->title }} @endif
@if($video->duration)
{{ $video->duration }}
@endif @if($cat)
{{ $cfg['label'] }}
@endif

{{ $video->title }}

@if($video->description)

{{ $video->description }}

@endif
@endforeach
@endif

Can't find a tutorial?

Request a topic and our team will prioritise it for the next release.

Request a Tutorial

More Help Resources

@endsection @push('styles') @endpush @push('scripts') @endpush