Skip to content

Commit 4fb8135

Browse files
author
Vlad Starkovsky
committed
create fork config from laravel/laravel
1 parent 4997f08 commit 4fb8135

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+31729
-268
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
namespace App\Http\Controllers;
3+
use Illuminate\Http\Request;
4+
5+
class FrontendController extends Controller
6+
{
7+
// For admin application
8+
public function admin()
9+
{
10+
return view('admin');
11+
}
12+
// For public application
13+
public function app()
14+
{
15+
return view('app');
16+
}
17+
}

0 commit comments

Comments
 (0)