Skip to content

Commit

Permalink
transfered dummy templates into Laravel project
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavnedelchev committed Sep 5, 2018
1 parent d9ff862 commit cf73508
Show file tree
Hide file tree
Showing 57 changed files with 6,627 additions and 6,052 deletions.
33 changes: 0 additions & 33 deletions .env.example

This file was deleted.

11 changes: 11 additions & 0 deletions app/Http/Controllers/BuyController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class BuyController extends Controller {
protected function getView() {
return view('pages/buy');
}
}
3 changes: 1 addition & 2 deletions app/Http/Controllers/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
use Illuminate\Http\Request;
use Illuminate\Support\Facades\DB;

class HomeController extends Controller
{
class HomeController extends Controller {
protected function getView() {
return view('pages/homepage');
}
Expand Down
11 changes: 11 additions & 0 deletions app/Http/Controllers/SendController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class SendController extends Controller {
protected function getView() {
return view('pages/send');
}
}
Loading

0 comments on commit cf73508

Please sign in to comment.