summaryrefslogtreecommitdiff
path: root/site/app/Http/Controllers/WhiskyController.php
blob: 620bfc7d503f54f4c812381405715183f5c28110 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php                                                                                                                                                                                                                
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Helpers\CryptoHelper;

class WhiskyController extends Controller {
    /**
     * Shows the index page.
     *
     * @return Response
     */
    public function showPage(Request $request) {
  
	$shops = DB:select('SELECT * FROM shop');

        return view('whisky', $shops);
    }
}