Merge branch 'master' into develop
This commit is contained in:
@@ -54,6 +54,19 @@ return array(
|
||||
|
||||
'locale' => 'en',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Application Fallback Locale
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| The fallback locale determines the locale to use when the current one
|
||||
| is not available. You may change the value to correspond to any of
|
||||
| the language folders that are provided through your application.
|
||||
|
|
||||
*/
|
||||
|
||||
'fallback_locale' => 'en',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Encryption Key
|
||||
|
||||
@@ -15,4 +15,4 @@ return array(
|
||||
|
||||
|
||||
|
||||
);
|
||||
);
|
||||
|
||||
@@ -24,7 +24,7 @@ return array(
|
||||
|
|
||||
| Here you may provide the host address of the SMTP server used by your
|
||||
| applications. A default option is provided that is compatible with
|
||||
| the Postmark mail service, which will provide reliable delivery.
|
||||
| the Mailgun mail service which will provide reliable deliveries.
|
||||
|
|
||||
*/
|
||||
|
||||
@@ -37,7 +37,7 @@ return array(
|
||||
|
|
||||
| This is the SMTP port used by your application to delivery e-mails to
|
||||
| users of your application. Like the host we have set this value to
|
||||
| stay compatible with the Postmark e-mail application by default.
|
||||
| stay compatible with the Mailgun e-mail applications by default.
|
||||
|
|
||||
*/
|
||||
|
||||
|
||||
@@ -56,4 +56,4 @@ return array(
|
||||
|
||||
),
|
||||
|
||||
);
|
||||
);
|
||||
|
||||
@@ -17,4 +17,4 @@ return array(
|
||||
|
||||
'driver' => 'array',
|
||||
|
||||
);
|
||||
);
|
||||
|
||||
@@ -18,4 +18,4 @@ return array(
|
||||
|
||||
'driver' => 'array',
|
||||
|
||||
);
|
||||
);
|
||||
|
||||
@@ -28,4 +28,4 @@ return array(
|
||||
|
||||
'email' => '',
|
||||
|
||||
);
|
||||
);
|
||||
|
||||
@@ -15,4 +15,4 @@ class BaseController extends Controller {
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,4 +20,4 @@ class HomeController extends BaseController {
|
||||
return View::make('hello');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,4 +14,4 @@ class DatabaseSeeder extends Seeder {
|
||||
// $this->call('UserTableSeeder');
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -87,4 +87,4 @@ Route::filter('csrf', function()
|
||||
{
|
||||
throw new Illuminate\Session\TokenMismatchException;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?php
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
@@ -17,4 +17,4 @@ return array(
|
||||
|
||||
'next' => 'Next »',
|
||||
|
||||
);
|
||||
);
|
||||
|
||||
@@ -49,4 +49,4 @@ class User extends Eloquent implements UserInterface, RemindableInterface {
|
||||
return $this->email;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,4 +14,4 @@
|
||||
Route::get('/', function()
|
||||
{
|
||||
return View::make('hello');
|
||||
});
|
||||
});
|
||||
|
||||
@@ -14,4 +14,4 @@ class ExampleTest extends TestCase {
|
||||
$this->assertTrue($this->client->getResponse()->isOk());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,4 +10,4 @@
|
||||
To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user