@extends('layouts.app') @section('title', 'Resources — MUVR Labs') @section('content')
Downloads & Media

Resources

Brochures, technical literature, standards references, videos, and useful engineering material.

{{-- Product Brochures --}}
Product Brochures
@foreach($brochures as $res)
{{ $res->title }}

{{ $res->description }}

@if($res->file_path) Download @elseif($res->external_url) Download @else Coming Soon @endif
@endforeach
{{-- Videos --}} @if($videos->count())
Videos & Media
@foreach($videos as $vid)
@if($vid->youtube_embed_id)
@else
{{ $vid->title }}
@endif
{{ $vid->title }}
@endforeach
@endif {{-- Standards --}} @if($standards->count())
Standards & References
@foreach($standards as $std)
{{ $std->name }}
{{ $std->description }}
@if($std->external_url) View Reference @endif
@endforeach
@endif {{-- Articles --}} @if($articles->count())
Insights & Articles
@foreach($articles as $art)
@if($art->category) {{ $art->category->name }} @else Article @endif
{{ $art->title }}
@if($art->description)

{{ Str::limit($art->description, 100) }}

@endif @if($art->external_url) Read Article → @endif
@endforeach
@endif

Need Technical Support or More Information?

Our team can help you understand specifications, standards, and the right solution for your application.

@endsection