Skip to content

Commit

Permalink
create fork config from laravel/laravel
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlad Starkovsky committed Mar 24, 2019
1 parent 4997f08 commit 4fb8135
Show file tree
Hide file tree
Showing 77 changed files with 31,729 additions and 268 deletions.
17 changes: 17 additions & 0 deletions app/Http/Controllers/FrontendController.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;

class FrontendController extends Controller
{
// For admin application
public function admin()
{
return view('admin');
}
// For public application
public function app()
{
return view('app');
}
}
Loading

0 comments on commit 4fb8135

Please sign in to comment.