-
-
-
-
-
Server Error: 404 (Not Found)
-
-
What does this mean?
-
-
- We couldn't find the page you requested on our servers. We're really sorry
- about that. It's our fault, not yours. We'll work hard to get this page
- back online as soon as possible.
-
-
-
- Perhaps you would like to go to our ?
-
-
-
-
\ No newline at end of file
diff --git a/application/views/error/500.php b/application/views/error/500.php
deleted file mode 100644
index 4dcd92ada43..00000000000
--- a/application/views/error/500.php
+++ /dev/null
@@ -1,103 +0,0 @@
-
-
-
-
-
-
-
-
-
Server Error: 500 (Internal Server Error)
-
-
What does this mean?
-
-
- Something went wrong on our servers while we were processing your request.
- We're really sorry about this, and will work hard to get this resolved as
- soon as possible.
-
-
-
- Perhaps you would like to go to our ?
-
-
-
-
\ No newline at end of file
diff --git a/application/views/home/index.php b/application/views/home/index.php
deleted file mode 100644
index 156c36abb8e..00000000000
--- a/application/views/home/index.php
+++ /dev/null
@@ -1,129 +0,0 @@
-
-
-
-
-
Welcome To Laravel
-
-
A Framework For Web Artisans
-
-
- You have successfully installed the Laravel framework. Laravel is a simple framework
- that helps web artisans create beautiful, creative applications using elegant, expressive
- syntax. You'll love using it.
-
-
-
Learn the terrain.
-
-
- You've landed yourself on our default home page. The route that
- is generating this page lives at:
-
-
-
APP_PATH/routes.php
-
-
And the view sitting before you can be found at:
-
-
APP_PATH/views/home/index.php
-
-
Create something beautiful.
-
-
- Now that you're up and running, it's time to start creating!
- Here are some links to help you get started:
-
-
-
-
-
-
\ No newline at end of file
diff --git a/artisan b/artisan
old mode 100644
new mode 100755
index 19db6127fd0..c35e31d6a29
--- a/artisan
+++ b/artisan
@@ -1,24 +1,18 @@
+#!/usr/bin/env php
- * @link http://laravel.com
- */
-// --------------------------------------------------------------
-// Set the core Laravel path constants.
-// --------------------------------------------------------------
-require 'paths.php';
+use Illuminate\Foundation\Application;
+use Symfony\Component\Console\Input\ArgvInput;
-// --------------------------------------------------------------
-// Bootstrap the Laravel core.
-// --------------------------------------------------------------
-require path('sys').'core.php';
+define('LARAVEL_START', microtime(true));
-// --------------------------------------------------------------
-// Launch the Laravel "Artisan" CLI.
-// --------------------------------------------------------------
-require path('sys').'cli/artisan'.EXT;
\ No newline at end of file
+// Register the Composer autoloader...
+require __DIR__.'/vendor/autoload.php';
+
+// Bootstrap Laravel and handle the command...
+/** @var Application $app */
+$app = require_once __DIR__.'/bootstrap/app.php';
+
+$status = $app->handleCommand(new ArgvInput);
+
+exit($status);
diff --git a/bootstrap/app.php b/bootstrap/app.php
new file mode 100644
index 00000000000..7b162dac3d9
--- /dev/null
+++ b/bootstrap/app.php
@@ -0,0 +1,18 @@
+withRouting(
+ web: __DIR__.'/../routes/web.php',
+ commands: __DIR__.'/../routes/console.php',
+ health: '/up',
+ )
+ ->withMiddleware(function (Middleware $middleware) {
+ //
+ })
+ ->withExceptions(function (Exceptions $exceptions) {
+ //
+ })->create();
diff --git a/bootstrap/cache/.gitignore b/bootstrap/cache/.gitignore
new file mode 100644
index 00000000000..d6b7ef32c84
--- /dev/null
+++ b/bootstrap/cache/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/bootstrap/providers.php b/bootstrap/providers.php
new file mode 100644
index 00000000000..38b258d1855
--- /dev/null
+++ b/bootstrap/providers.php
@@ -0,0 +1,5 @@
+
-## Laravel 3.1
-
-- Added events to logger for more flexibility.
-- Added **database.fetch** configuration option.
-- Added controller factories for injecting any IoC.
-- Added **link_to_action** HTML helpers.
-- Added ability to set default value on Config::get.
-- Added the ability to add pattern based filters.
-- Improved session ID assignment.
-- Added support for "unsigned" integers in schema builder.
-- Added config, view, and lang loaders.
-- Added more logic to **application/start.php** for more flexibility.
-- Added foreign key support to schema builder.
-- Postgres "unique" indexes are now added with ADD CONSTRAINT.
-- Added "Event::until" method.
-- Added "memory" cache and session drivers.
-- Added Controller::detect method.
-- Added Cache::forever method.
-- Controller layouts now resolved in Laravel\Controller __construct.
-- Rewrote Eloquent and included in core.
-- Added "match" validation rule.
-- Fixed table prefix bug.
-- Added Form::macro method.
-- Added HTML::macro method.
-- Added Route::forward method.
-- Prepend table name to default index names in schema.
-- Added "forelse" to Blade.
-- Added View::render_each.
-- Able to specify full path to view (path: ).
-- Added support for Blade template inheritance.
-- Added "before" and "after" validation checks for dates.
-
-