-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modified: back/Dockerfile modified: front/src/app/core/constants/team_members.ts modified: front/src/app/modules/showcase/home/home.component.html modified: back/Dockerfile modified: back/composer.lock modified: front/src/app/core/constants/team_members.ts modified: front/src/app/modules/showcase/home/home.component.html modified: back/Dockerfile modified: front/src/app/core/constants/team_members.ts modified: front/src/app/modules/showcase/home/home.component.html modified: back/Dockerfile modified: front/src/app/core/constants/team_members.ts modified: front/src/app/modules/showcase/home/home.component.html
- Loading branch information
1 parent
dfce9a6
commit ddf0e26
Showing
14 changed files
with
2,666 additions
and
856 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
namespace App\Http\Controllers; | ||
|
||
use Illuminate\Http\Request; | ||
|
||
class HomeController extends Controller | ||
{ | ||
/** | ||
* Create a new controller instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct() | ||
{ | ||
$this->middleware('auth'); | ||
} | ||
|
||
/** | ||
* Show the application dashboard. | ||
* | ||
* @return \Illuminate\Contracts\Support\Renderable | ||
*/ | ||
public function index() | ||
{ | ||
return view('home'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace App; | ||
|
||
use Illuminate\Database\Eloquent\Relations\Pivot; | ||
|
||
class ProjectUser extends Pivot | ||
{ | ||
protected $table = 'project_user'; | ||
} |
Oops, something went wrong.