From 3e6defc7eca3c32f6d3d12a5fe9b4507c986cc7e Mon Sep 17 00:00:00 2001 From: Bruno Fontes Date: Mon, 17 Sep 2018 20:33:05 -0300 Subject: [PATCH] Starting add a Help page --- resources/views/help.blade.php | 33 +++++++++++++++++++++++++++++++++ routes/web.php | 3 +++ 2 files changed, 36 insertions(+) create mode 100644 resources/views/help.blade.php diff --git a/resources/views/help.blade.php b/resources/views/help.blade.php new file mode 100644 index 0000000..b93c3f6 --- /dev/null +++ b/resources/views/help.blade.php @@ -0,0 +1,33 @@ +@extends('layouts.app') + +@section('content') +
+

Help...

+
+
+
+
What is it?
+
+

+ Share It! is a site dedicated to help you sharing items with others. +

+

But before sharing anything, you just need to understand 2 basic ideas:

+

    +
  • Product - The category that has some similar items
  • +
  • Item - The item that will be shared. Every item belongs to a Product
  • +

+

Examples: You can create the following Categories/Items

+

+

    +
  • Books -> Don Quixote, The Hitchhiker's Guide to the Galaxy
  • +
  • Matrix Movies -> Matrix 1, Matrix 2, Matrix 3
  • +
  • Website Y -> YourAccount*
  • +
+

* Please note that many websites does not allow sharing your account. Read the site EULA before include it here.

+

+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/routes/web.php b/routes/web.php index 9bf8a9b..f063a55 100644 --- a/routes/web.php +++ b/routes/web.php @@ -39,3 +39,6 @@ Route::delete('/user', 'UserController@delete')->middleware('verified'); Auth::routes(['verify' => true]); Route::get('/home', 'HomeController@index')->name('home')->middleware('auth'); +Route::get('/help', function () { + return view('help'); +}); \ No newline at end of file