web.php 749 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Web Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here is where you can register web routes for your application. These
  9. | routes are loaded by the RouteServiceProvider within a group which
  10. | contains the "web" middleware group. Now create something great!
  11. |
  12. */
  13. Route::get('/', function () {
  14. return view('home');
  15. })->name('home');
  16. Route::get('/about', function () {
  17. return view('about');
  18. })->name('about');
  19. Route::get('/feedback', function () {
  20. return view('contact');
  21. })->name('contact');
  22. Route::post('/submit', 'ContactController@submit')->name('contact-form');