create a route to view all data

PHOTO EMBED

Mon Jun 23 2025 17:28:16 GMT+0000 (Coordinated Universal Time)

Saved by @Joe_Devs #php #laravel

Route::get('/listings', function () {
    return view('listings',[ 'listings' => Listing::all()]);
});
content_copyCOPY