2024-02-15 19:30:27 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
|
|
|
|
/*
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Web Routes
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
|
|
| routes are loaded by the RouteServiceProvider and all of them will
|
|
|
|
| be assigned to the "web" middleware group. Make something great!
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
Route::get('/', function () {
|
2024-02-15 21:01:07 +02:00
|
|
|
return view('homepage');
|
2024-02-15 19:30:27 +02:00
|
|
|
});
|
2024-02-16 19:24:05 +02:00
|
|
|
|
|
|
|
Route::get('/about', function () {
|
|
|
|
return view('about');
|
2024-02-17 16:42:40 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
Route::get('/beef', function() {
|
|
|
|
return view('beef');
|
2024-02-18 15:28:40 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
Route::get('/poultry', function() {
|
|
|
|
return view('poultry');
|
|
|
|
});
|
|
|
|
|
|
|
|
Route::get('/pork', function() {
|
|
|
|
return view('pork');
|
|
|
|
});
|
|
|
|
|
|
|
|
Route::get('/lamb', function() {
|
|
|
|
return view('lamb');
|
2024-02-16 19:24:05 +02:00
|
|
|
});
|