@extends('layouts.app') @section('title', 'Resources | '.config('app.name')) @push('styles') @vite('resources/css/pages/resources.css') @endpush @section('content') @php $videos = [ [ 'thumb' => 'resources-video-thumbnail.png', 'video' => 'SecureX360-Corporate-Video.mp4', 'title' => 'Watch Corporate Video' ], [ 'thumb' => 'resources-video-thumbnail-2.png', 'video' => 'SecurX360-GITEX2025.mp4', 'title' => 'Watch Platform Demo' ] ]; @endphp
@foreach($videos as $index => $video)
{{ $video['title'] }}
Play
{{ $video['title'] }}
@endforeach
@endsection @push('scripts') @vite('resources/js/resources.js') @endpush