Display time and place for a user's next bike service

// Practice $🀑 = β›ˆοΈ::πŸš΄β€β™€οΈ(); 
// Rou::ge('/ice', fun () {
//     $🀑 = β›ˆοΈ::πŸš΄β€β™€οΈ(); 
//     re view('ice', ['🀑' => $🀑]);
// });

Route::get('/newbike', function () {
    $dummyData = AirtableService::getNewBike();
    return view('practice', ['dummyData' => $dummyData]);
});

dummyAirtableArray

// Practice Rou::ge();
// Rou::ge('/ice', fun () {
//     re view('ice', [
//         '🀑' => ['time' => '26. august 2025', 'location' => 'Sandaker']
//     ]);
// });

Route::get('/practice', function () {
    return view('practice', [
        'dummyAirtableArray' => ['time' => '26. august 2025', 'location' => 'Sandaker']
    ]);
});
// web.php        
// Protected routes
// Ro::mleware('auth')->gro(fun () {

Route::middleware('auth')->group(function () {


    Route::get('/min-side', function () {
        $booking = AirtableService::getNextBooking();
        return view('dashboard', ['booking' => $booking]);
    })->name('dashboard');

    Route::get('/booking', function () {
        $booking = AirtableService::getNextBooking();
        return view('booking', ['booking' => $booking]);
    })->name('booking');
});


// practice.blade.php  

<h1>Whee! πŸš΄β€β™€οΈ</h1>
<h2>Sommerservice β˜€οΈ</h2>
<h3>Time ⏲️</h3>
<p>{{ $dummyAirtableArray['time'] }}</p>
<h3>Location πŸ—ΊοΈ</h3>
<p>{{ $dummyAirtableArray['location'] }}</p>