From 1300d36ef5de02324700ce77737fc479f3243d86 Mon Sep 17 00:00:00 2001 From: Stephen Cameron Date: Thu, 21 Oct 2021 20:45:29 +0200 Subject: [PATCH] WIP #4781 @4 --- resources/views/home.blade.php | 14 +++ resources/views/layouts/app.blade.php | 46 +++++++++ resources/views/welcome.blade.php | 132 -------------------------- routes/web.php | 2 +- 4 files changed, 61 insertions(+), 133 deletions(-) create mode 100644 resources/views/home.blade.php create mode 100644 resources/views/layouts/app.blade.php delete mode 100644 resources/views/welcome.blade.php diff --git a/resources/views/home.blade.php b/resources/views/home.blade.php new file mode 100644 index 0000000..70a2d53 --- /dev/null +++ b/resources/views/home.blade.php @@ -0,0 +1,14 @@ +@extends('layouts.app') + +@section('content') + +
+
BLOCK 1
+
+
LINK
+
LINK
+
LINK
+
+
+ +@endsection diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php new file mode 100644 index 0000000..12c77af --- /dev/null +++ b/resources/views/layouts/app.blade.php @@ -0,0 +1,46 @@ + + + + + + + {{ config('app.name') }} + + +
+ {{-- Burger Menu Icon --}} + + + + + + + + + Menu + + + {{-- VEOLIA Logo --}} + + + + {{-- Search Icon --}} + + + + + + + + Recherche + +
+ +
+ @yield('content') +
+ + + diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php deleted file mode 100644 index b1905c9..0000000 --- a/resources/views/welcome.blade.php +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - Laravel - - - - - - - - - - -
- @if (Route::has('login')) - - @endif - -
-
- - - - - -
- -
-
-
- - -
-
- Laravel has wonderful, thorough documentation covering every aspect of the framework. Whether you are new to the framework or have previous experience with Laravel, we recommend reading all of the documentation from beginning to end. -
-
-
- -
-
- - -
- -
-
- Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process. -
-
-
- -
-
- - -
- -
-
- Laravel News is a community driven portal and newsletter aggregating all of the latest and most important news in the Laravel ecosystem, including new package releases and tutorials. -
-
-
- -
-
- -
Vibrant Ecosystem
-
- -
-
- Laravel's robust library of first-party tools and libraries, such as Forge, Vapor, Nova, and Envoyer help you take your projects to the next level. Pair them with powerful open source libraries like Cashier, Dusk, Echo, Horizon, Sanctum, Telescope, and more. -
-
-
-
-
- -
-
-
- - - - - - Shop - - - - - - - - Sponsor - -
-
- -
- Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}) -
-
-
-
- - diff --git a/routes/web.php b/routes/web.php index 086f340..b0d9441 100644 --- a/routes/web.php +++ b/routes/web.php @@ -7,7 +7,7 @@ Route::group([ 'middleware' => ['web', config('backpack.base.middleware_key', 'admin')], 'namespace' => '\App\Http\Controllers\Admin', ], function () { // custom admin routes - + Route::view('/', 'home'); Route::any('tools/{tool}/{args?}', 'ToolsController@index')->where(['args' => '.*']); }); -- 2.39.5