-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e4f01b7
commit 953daae
Showing
580 changed files
with
171,165 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory" : "resources/assets/js/bower_components" | ||
} |
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,10 @@ | ||
<?php | ||
|
||
namespace App\Models; | ||
|
||
use Zizaco\Entrust\EntrustPermission; | ||
|
||
class Permission extends EntrustPermission | ||
{ | ||
protected $fillable = ['name', 'display_name', 'description']; | ||
} |
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\Models; | ||
|
||
use Zizaco\Entrust\EntrustRole; | ||
|
||
class Role extends EntrustRole | ||
{ | ||
protected $fillable = ['name', 'display_name', 'description']; | ||
} |
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,23 @@ | ||
{ | ||
"name": "Your App", | ||
"version": "1.0.0", | ||
"main": "/css/all.css", | ||
"ignore": [ | ||
".jshintrc", | ||
"**/*.txt" | ||
], | ||
"dependencies": { | ||
"jQuery": "*", | ||
"bootstrap": "*", | ||
"font-awesome": "~4.3.0", | ||
"angular": "*", | ||
"angular-bootstrap": "*", | ||
"angular-resource": "*", | ||
"moment": "*", | ||
"angular-filter": "~0.5.4" | ||
}, | ||
"devDependencies": {}, | ||
"resolutions": { | ||
"angular": "~1.3.x" | ||
} | ||
} |
Oops, something went wrong.