@extends('front::layouts.master') @section('title','E-SHOP || About Us') @section('content')
{{-- Software Section --}}
Software >
@forelse($downloads['Software'] ?? [] as $item)
{{ $item->title }} Download
@empty
No software available
@endforelse
{{-- Tools Section --}}
Tools >
@forelse($downloads['Tools'] ?? [] as $item)
{{ $item->title }} Download
@empty
No tools available
@endforelse
{{-- Documents Section --}}
Documents >
@forelse($downloads['Documents'] ?? [] as $item)
{{ $item->title }} Download
@empty
No documents available
@endforelse
@endsection