Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Письменов Дмитрий Иванович / yourroomads

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • yourroomads
  • app
  • Http
  • Controllers
  • ImagesController.php
  • Jonathan Reinink's avatar
    Add user photos · 8fbfa660
    Jonathan Reinink committed Aug 09, 2019
    8fbfa660
ImagesController.php 214 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php

namespace App\Http\Controllers;

use League\Glide\Server;

class ImagesController extends Controller
{
    public function show(Server $glide)
    {
        return $glide->fromRequest()->response();
    }
}