@extends('frontend.layouts.partials.app') @section('title', 'Trainings') @section('meta', 'Welcome to Goodwill Finance Pvt. Ltd.') {{-- Include Font Awesome and Alpine.js --}} @push('head') @endpush @section('content') {{-- HERO SECTION --}}
Trainings Banner

Trainings

Home >> Trainings
{{-- TRAINING CARDS --}}
@forelse ($trainings as $training) @php $file = $training->training_file; $ext = pathinfo($file, PATHINFO_EXTENSION); $icon = match ($ext) { 'pdf' => 'fas fa-file-pdf text-red-500', 'doc', 'docx' => 'fas fa-file-word text-blue-500', 'ppt', 'pptx' => 'fas fa-file-powerpoint text-yellow-500', default => 'fas fa-file-alt text-gray-500', }; $fileUrl = asset('storage/' . $file); @endphp
{{ $training->training_name }}

Click to View

@empty

We're preparing new content for you. It will be available here soon.

@endforelse
{{-- MODAL --}} @endsection @push('scripts') @endpush