4 changed files
app/Http/Controllers | ||
HomeController.php + | ||
resources/views | ||
downloads.blade.php + | ||
master.blade.php | ||
routes | ||
web.php | ||
HomeController.php
/app/Http/Controllers/HomeController.php+42/app/Http/Controllers/HomeController.php
Add comment 1 Plus <?php
Add comment 2 Plus
Add comment 3 Plus namespace App\Http\Controllers;
Add comment 4 Plus
Add comment 5 Plus use Illuminate\Contracts\Foundation\Application;
Add comment 6 Plus use Illuminate\Contracts\View\View;
Add comment 7 Plus use Illuminate\Http\Request;
Add comment 8 Plus use Illuminate\Support\Facades\Storage;
Add comment 9 Plus use Illuminate\View\Factory;
Add comment 10 Plus use Illuminate\Filesystem\Filesystem;
Add comment 11 Plus
Add comment 12 Plus class HomeController extends Controller
Add comment 13 Plus {
Add comment 14 Plus function downloadsView(Request $request): Factory|View|Application
Add comment 15 Plus {
Add comment 16 Plus $files = ['latest' => []];
Add comment 17 Plus $disk = Storage::disk('public');
Add comment 18 Plus $latestFiles = $disk->allFiles('latest');
Add comment 19 Plus
Add comment 20 Plus foreach ($latestFiles as $file)
Add comment 21 Plus {
Add comment 22 Plus if (pathinfo($file, PATHINFO_EXTENSION) != 'exe')
Add comment 23 Plus continue;
Add comment 24 Plus
Add comment 25 Plus $fileSize = $disk->size($file) / 1024;
Add comment 26 Plus $base = log($fileSize) / log(1024);
Add comment 27 Plus $presentationSize = round(pow(1024, $base - floor($base)), 2) . ' MB';
Add comment 28 Plus
Add comment 29 Plus $info = [
Add comment 30 Plus 'url' => $disk->url($file),
Add comment 31 Plus 'name' => pathinfo($file, PATHINFO_FILENAME),
Add comment 32 Plus 'size' => $presentationSize
Add comment 33 Plus ];
Add comment 34 Plus $files['latest'][] = $info;
Add comment 35 Plus }
Add comment 36 Plus
Add comment 37 Plus // dd($files);
Add comment 38 Plus
Add comment 39 Plus return view('downloads', $files);
Add comment 40 Plus }
Add comment 41 Plus }
Add comment 42 Plus
Add comment 1 Plus @extends('master')
Add comment 2 Plus
Add comment 3 Plus @section('content')
Add comment 4 Plus <div class="s-pagewrap">
Add comment 5 Plus <section id="info" class="s-info">
Add comment 6 Plus <div class="row">
Add comment 7 Plus <div class="column lg-12 intro">
Add comment 8 Plus
Add comment 9 Plus <h1>Descargas.</h1>
Add comment 10 Plus
Add comment 11 Plus <p class="lead">
Add comment 12 Plus A continuación se presentarán las diferentes versiones de CrossBind para descargar
Add comment 13 Plus </p>
Add comment 14 Plus
Add comment 15 Plus <hr>
Add comment 16 Plus </div>
Add comment 17 Plus
Add comment 18 Plus </div>
Add comment 19 Plus <div class="row u-add-bottom">
Add comment 20 Plus
Add comment 21 Plus <div class="column lg-12">
Add comment 22 Plus
Add comment 23 Plus <h3>Latest</h3>
Add comment 24 Plus <p>Última versión estable</p>
Add comment 25 Plus
Add comment 26 Plus <div class="table-responsive">
Add comment 27 Plus
Add comment 28 Plus <table>
Add comment 29 Plus <thead>
Add comment 30 Plus <tr>
Add comment 31 Plus <th>Name</th>
Add comment 32 Plus <th>Age</th>
Add comment 33 Plus <th>Sex</th>
Add comment 34 Plus <th>Location</th>
Add comment 35 Plus </tr>
Add comment 36 Plus </thead>
Add comment 37 Plus <tbody>
Add comment 38 Plus <tr>
Add comment 39 Plus <td>William J. Seymour</td>
Add comment 40 Plus <td>34</td>
Add comment 41 Plus <td>Male</td>
Add comment 42 Plus <td>Azusa Street</td>
Add comment 43 Plus </tr>
Add comment 44 Plus <tr>
Add comment 45 Plus <td>Jennie Evans Moore</td>
Add comment 46 Plus <td>30</td>
Add comment 47 Plus <td>Female</td>
Add comment 48 Plus <td>Azusa Street</td>
Add comment 49 Plus </tr>
Add comment 50 Plus </tbody>
Add comment 51 Plus </table>
Add comment 52 Plus
Add comment 53 Plus </div>
Add comment 54 Plus
Add comment 55 Plus </div>
Add comment 56 Plus
Add comment 57 Plus </div> <!-- end row -->
Add comment 58 Plus
Add comment 59 Plus </section>
Add comment 60 Plus </div>
Add comment 61 Plus @stop
Add comment 62 Plus
Add comment 1 <!doctype html>
Add comment 2 Minus <html lang="en" class="no-js" >
Add comment 2 Plus <html lang="en" class="no-js">
Add comment 3 <head>
Add comment 4 <!--- basic page needs
Add comment 5 ================================================== -->
Add comment 20 'resources/css/vendor.css',
Add comment 21 'resources/css/styles.css',
Add comment 22 ])
Add comment 23 Plus <style media="screen">
Add comment 24 Plus
Add comment 25 Plus .s-info .intro h1 {
Add comment 26 Plus margin-top: 0;
Add comment 27 Plus }
Add comment 28 Plus
Add comment 29 Plus </style>
Add comment 23 30
Add comment 24 31 <!-- favicons
Add comment 25 32 ================================================== -->
Add comment 1 <?php
Add comment 2
Add comment 3 Plus use App\Http\Controllers\HomeController;
Add comment 3 4 use Illuminate\Support\Facades\Route;
Add comment 4 5
Add comment 5 6 /*
Add comment 16 17 Route::get('/', function () {
Add comment 17 18 return view('home');
Add comment 18 19 });
Add comment 20 Plus
Add comment 21 Plus Route::get('/downloads',[HomeController::class, 'downloadsView'])->name('downloads');
Add comment 19 22