Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
754d78ec
Commit
754d78ec
authored
Feb 23, 2016
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
62d62a05
dec39262
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
4 deletions
+10
-4
.env.example
.env.example
+1
-0
.gitkeep
app/Listeners/.gitkeep
+1
-0
.gitkeep
app/Policies/.gitkeep
+1
-0
app.php
config/app.php
+1
-1
ModelFactory.php
database/factories/ModelFactory.php
+1
-1
.gitkeep
database/migrations/.gitkeep
+1
-0
.gitkeep
database/seeds/.gitkeep
+1
-0
DatabaseSeeder.php
database/seeds/DatabaseSeeder.php
+1
-1
readme.md
readme.md
+1
-1
.gitkeep
resources/views/vendor/.gitkeep
+1
-0
No files found.
.env.example
View file @
754d78ec
APP_ENV=local
APP_DEBUG=true
APP_KEY=SomeRandomString
APP_URL=http://localhost
DB_HOST=127.0.0.1
DB_DATABASE=homestead
...
...
app/Listeners/.gitkeep
View file @
754d78ec
app/Policies/.gitkeep
View file @
754d78ec
config/app.php
View file @
754d78ec
...
...
@@ -39,7 +39,7 @@ return [
|
*/
'url'
=>
'http://localhost'
,
'url'
=>
env
(
'APP_URL'
,
'http://localhost'
)
,
/*
|--------------------------------------------------------------------------
...
...
database/factories/ModelFactory.php
View file @
754d78ec
...
...
@@ -14,7 +14,7 @@
$factory
->
define
(
App\User
::
class
,
function
(
Faker\Generator
$faker
)
{
return
[
'name'
=>
$faker
->
name
,
'email'
=>
$faker
->
e
mail
,
'email'
=>
$faker
->
safeE
mail
,
'password'
=>
bcrypt
(
str_random
(
10
)),
'remember_token'
=>
str_random
(
10
),
];
...
...
database/migrations/.gitkeep
View file @
754d78ec
database/seeds/.gitkeep
View file @
754d78ec
database/seeds/DatabaseSeeder.php
View file @
754d78ec
...
...
@@ -11,6 +11,6 @@ class DatabaseSeeder extends Seeder
*/
public
function
run
()
{
// $this->call(UserTableSeeder::class);
// $this->call(User
s
TableSeeder::class);
}
}
readme.md
View file @
754d78ec
...
...
@@ -24,4 +24,4 @@ If you discover a security vulnerability within Laravel, please send an e-mail t
## License
The Laravel framework is open-sourced software licensed under the
[
MIT license
](
http://opensource.org/licenses/MIT
)
The Laravel framework is open-sourced software licensed under the
[
MIT license
](
http://opensource.org/licenses/MIT
)
.
resources/views/vendor/.gitkeep
View file @
754d78ec
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment