@extends('clients.layouts.app')
@section('title', 'Downloads')
@section('content')
Downloads
Access software, scripts, and
documentation
@php
$downloads = [
['name' => 'cPanel Mobile App Guide', 'version' => '1.0', 'size' => '2.4 MB', 'ext' => 'PDF', 'date' => '2024-01-10'],
['name' => 'FTP Client Configuration Script', 'version' => '2.3', 'size' => '15 KB', 'ext' => 'SH', 'date' => '2023-11-25'],
['name' => 'Security Best Practices e-Book', 'version' => '2024', 'size' => '5.1 MB', 'ext' => 'PDF', 'date' => '2024-01-05'],
];
@endphp
@foreach($downloads as $file)
{{ $file['name'] }}
Version {{ $file['version'] }} |
Format: {{ $file['ext'] }} |
Size: {{ $file['size'] }}
@endforeach
@endsection