Index: app/Http/Controllers/ActivityController.php
===================================================================
--- app/Http/Controllers/ActivityController.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ app/Http/Controllers/ActivityController.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -13,7 +13,7 @@
     public function travelActivities(Destination $destination): View|Factory|Application
     {
-        $sezona = strtolower($destination->preporachanasezona);
-
-        $aktivnosti = TravelActivity::whereRaw("LOWER(kategorija) LIKE ?", ["%{$sezona}%"])->get();
+        $aktivnosti = TravelActivity::query()
+            ->whereLike('aktivnosti', "%$destination->preporachanasezona%")
+            ->get();
 
         return view('destinations.activities', compact('destination', 'aktivnosti'));
Index: app/Http/Controllers/DestinationController.php
===================================================================
--- app/Http/Controllers/DestinationController.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ app/Http/Controllers/DestinationController.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -4,6 +4,9 @@
 
 use App\Models\Destination;
+use App\Models\TravelActivity;
+use App\Models\ViewProcentCheapDestination;
 use Illuminate\Contracts\View\Factory;
 use Illuminate\Contracts\View\View;
+use Illuminate\Database\Eloquent\Builder;
 use Illuminate\Foundation\Application;
 use Illuminate\Http\Request;
@@ -12,7 +15,18 @@
 class DestinationController extends Controller
 {
-    public function index(): View|Factory|Application
+    public function index(Request $request): View|Factory|Application
     {
-        $destinations = Destination::all();
+        $type = $request->input('tipovimesta');
+        $season = $request->input('preporachanasezona');
+        $popularity = $request->input('popularnost');
+
+        $destinations = Destination::query()
+            ->when($season && $season !== 'any', fn ($query) => $query->where('preporachanasezona', $season))
+            ->when($popularity, function (Builder $query) use ($popularity) {
+                $popularnost = explode('-', $popularity);
+                return $query->whereBetween('popularnost', [$popularnost[0], $popularnost[1]]);
+            })
+            ->when($type && $type !== 'any', fn ($query) => $query->where('tipovimesta', 'like', "%$type%"))
+            ->get();
 
         return view('destinations/index', compact('destinations'));
@@ -61,9 +75,12 @@
         $topLocations = collect(array_slice($locationCounts, 0, 5, true));
 
-        $cheapActivities = DB::table('travel_sage.aktivnosti')
+        $cheapActivities = TravelActivity::query()
             ->where('iznos', '<', 500)
             ->get();
 
-        return view('home', compact('topLocations', 'cheapActivities'));
+        $data = ViewProcentCheapDestination::all();
+
+
+        return view('home', compact('topLocations', 'cheapActivities', 'data'));
     }
 
@@ -78,30 +95,4 @@
         return view('cheap', compact('cheapActivities'));
     } */
-
-    public function explore(): View|Factory|Application
-    {
-        $locations = DB::table('travel_sage.destinacii')->pluck('imelokacija');
-        $locationCounts = [];
-
-        foreach ($locations as $location) {
-            $lowerLocation = mb_strtolower($location, 'UTF-8');
-
-            $count = DB::table('travel_sage.nastani')
-                ->whereRaw('LOWER(naziv) LIKE ?', ['%' . $lowerLocation . '%'])
-                ->orWhereRaw('LOWER(detali) LIKE ?', ['%' . $lowerLocation . '%'])
-                ->count();
-
-            $locationCounts[$location] = $count;
-        }
-
-        arsort($locationCounts);
-        $topLocations = collect(array_slice($locationCounts, 0, 5, true));
-
-        $cheapActivities = DB::table('travel_sage.aktivnosti')
-            ->where('iznos', '<', 500)
-            ->get();
-
-        return view('explore', compact('topLocations', 'cheapActivities'));
-    }
 
     public function cheapActivitiesChart(): \Illuminate\Contracts\View\View
Index: app/Http/Controllers/PackageController.php
===================================================================
--- app/Http/Controllers/PackageController.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ app/Http/Controllers/PackageController.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -14,7 +14,7 @@
     public function travelPackages(Destination $destination): View|Factory|Application
     {
-        $sezona = strtolower($destination->preporachanasezona);
-
-        $paketi = TravelPackage::where('imepaket', 'LIKE', "%{$sezona}%")->get();
+        $paketi = TravelPackage::query()
+            ->where('imepaket', 'like', "%$destination->preporachanasezona%")
+            ->get();
 
         return view('destinations.packages', compact('destination', 'paketi'));
Index: app/Http/Controllers/SearchController.php
===================================================================
--- app/Http/Controllers/SearchController.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ app/Http/Controllers/SearchController.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -10,5 +10,5 @@
     public function index(): \Illuminate\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
     {
-        $results = collect([]); // Празен резултат по дефиниција
+        $results = collect([]);
 
         return view('destinations.search', compact('results'));
Index: app/Http/Controllers/TravelActivityController.php
===================================================================
--- app/Http/Controllers/TravelActivityController.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ app/Http/Controllers/TravelActivityController.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -6,4 +6,5 @@
 use App\Models\TravelActivity;
 use Illuminate\Http\Request;
+use Illuminate\Support\Facades\DB;
 
 class TravelActivityController extends Controller
@@ -23,12 +24,14 @@
     public function store(Request $request): \Illuminate\Http\RedirectResponse
     {
-        $validatedData = $request->validate([
-            'imeaktivnost' => 'required|string|max:255',
-            'informacii' => 'nullable|string|max:255',
-            'kategorija' => 'required|string|max:255',
-            'iznos' => 'nullable|numeric',
-        ]);
+        DB::transaction(function () use ($request) {
+            $validatedData = $request->validate([
+                'imeaktivnost' => 'required|string|max:255',
+                'informacii' => 'nullable|string|max:255',
+                'kategorija' => 'required|string|max:255',
+                'iznos' => 'nullable|numeric',
+            ]);
 
-        TravelActivity::create($validatedData);
+            TravelActivity::create($validatedData);
+        });
 
         return redirect()->route('travel-activities.index')->with('success', 'Активноста е успешно креирана!');
Index: app/Http/Controllers/TravelEventController.php
===================================================================
--- app/Http/Controllers/TravelEventController.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ app/Http/Controllers/TravelEventController.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -6,4 +6,5 @@
 use App\Models\TravelEvent;
 use Illuminate\Http\Request;
+use Illuminate\Support\Facades\DB;
 
 class TravelEventController extends Controller
@@ -23,13 +24,15 @@
     public function store(Request $request): \Illuminate\Http\RedirectResponse
     {
-        $validatedData = $request->validate([
-            'naziv' => 'required|string|max:255',
-            'vidovi' => 'required|string|max:255',
-            'detali' => 'nullable|string',
-            'pochetendatum' => 'required|date',
-            'kraendatum' => 'required|date',
-        ]);
+        DB::transaction(function () use ($request) {
+            $validatedData = $request->validate([
+                'naziv' => 'required|string|max:255',
+                'vidovi' => 'required|string|max:255',
+                'detali' => 'nullable|string',
+                'pochetendatum' => 'required|date',
+                'kraendatum' => 'required|date',
+            ]);
 
-        TravelEvent::create($validatedData);
+            TravelEvent::create($validatedData);
+        });
 
         return redirect()->route('travel-events.index')->with('success', 'Настанот е успешно креиран!');
Index: app/Http/Controllers/TravelPackageController.php
===================================================================
--- app/Http/Controllers/TravelPackageController.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ app/Http/Controllers/TravelPackageController.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -6,4 +6,5 @@
 use App\Models\TravelPackage;
 use Illuminate\Http\Request;
+use Illuminate\Support\Facades\DB;
 
 class TravelPackageController extends Controller
@@ -22,12 +23,14 @@
     public function store(Request $request): \Illuminate\Http\RedirectResponse
     {
-        $validatedData = $request->validate([
-            'imepaket' => 'required|string|max:255',
-            'cena' => 'required|numeric',
-            'pochetok' => 'required|date_format:Y-m-d\TH:i',
-            'kraj' => 'required|date_format:Y-m-d\TH:i|after_or_equal:pochetok',
-        ]);
+        DB::transaction(function () use ($request) {
+            $validatedData = $request->validate([
+                'imepaket' => 'required|string|max:255',
+                'cena' => 'required|numeric',
+                'pochetok' => 'required|date_format:Y-m-d\TH:i',
+                'kraj' => 'required|date_format:Y-m-d\TH:i|after_or_equal:pochetok',
+            ]);
 
-        TravelPackage::create($validatedData);
+            TravelPackage::create($validatedData);
+        });
 
         return redirect()->route('travel-packages.index')->with('success', 'Пакетот е успешно креиран!');
Index: app/Models/ViewProcentCheapDestination.php
===================================================================
--- app/Models/ViewProcentCheapDestination.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
+++ app/Models/ViewProcentCheapDestination.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -0,0 +1,12 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class ViewProcentCheapDestination extends Model
+{
+    protected $table = 'view_procent_cheap_destinations';
+    public $timestamps = false;
+}
+
Index: database/migrations/2025_06_24_232513_create_view_procent_cheap_destinations.php
===================================================================
--- database/migrations/2025_06_24_232513_create_view_procent_cheap_destinations.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
+++ database/migrations/2025_06_24_232513_create_view_procent_cheap_destinations.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -0,0 +1,34 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\DB;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration
+{
+    /**
+     * Run the migrations.
+     */
+    public function up(): void
+    {
+        DB::statement("
+            CREATE VIEW view_procent_cheap_destinations AS
+            SELECT
+                d.imelokacija,
+                COUNT(CASE WHEN a.iznos < 500 THEN 1 END) * 100.0 / COUNT(*) AS procent_cheap
+            FROM travel_sage.destinacii d
+            JOIN travel_sage.aktivnosti a ON d.iddest = a.iddest
+            GROUP BY d.iddest, d.imelokacija
+            ORDER BY procent_cheap DESC
+        ");
+    }
+
+    /**
+     * Reverse the migrations.
+     */
+    public function down(): void
+    {
+        Schema::dropIfExists('view_procent_cheap_destinations');
+    }
+};
Index: resources/views/carousel.blade.php
===================================================================
--- resources/views/carousel.blade.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ resources/views/carousel.blade.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -86,6 +86,8 @@
 
         .carousel-inner {
-            margin-right: 10vw;
+            margin-right: 0;
+            margin-bottom: 80px;
         }
+
     </style>
 </head>
@@ -93,7 +95,7 @@
 <div class="container mt-5">
     <h2 class="mb-4 text-center" style="padding-bottom: 5vh;
-    padding-top: 10vh;">Топ 5 дестинации со најмногу организирани настани</h2>
+    padding-top: 20vh;">Топ 5 дестинации со најмногу организирани настани</h2>
 
-    <div id="locationsCarousel" class="carousel slide" data-bs-ride="carousel" data-bs-interval="3500">
+    <div id="locationsCarousel" class="carousel slide" data-bs-ride="carousel" data-bs-interval="2500">
         @php
             $locations = collect($topLocations);
Index: resources/views/cheap-chart.blade.php
===================================================================
--- resources/views/cheap-chart.blade.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ resources/views/cheap-chart.blade.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -6,16 +6,13 @@
     <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
     <style>
-        body {
-            padding: 40px;
-            margin: 0;
-        }
-
-        .container {
+        .containerDestination {
             display: flex;
             justify-content: center;
             align-items: center;
             gap: 50px;
-            max-width: 1000px;
-            margin: 0 auto;
+            margin-bottom: 15vh;
+            width: 80%;
+            margin-left: 10vw;
+            margin-top: 5vh;
         }
 
@@ -38,24 +35,8 @@
             padding: 15px;
         }
-
-        @media (max-width: 800px) {
-            .container {
-                flex-direction: column;
-                gap: 30px;
-            }
-
-            canvas#cheapChart {
-                width: 90% !important;
-                height: auto !important;
-            }
-
-            .text-area {
-                text-align: center;
-            }
-        }
     </style>
 </head>
 <body>
-<div class="container">
+<div class="containerDestination">
     <div class="text-area">
         <h2>Дестинации со најголем процент на достапни (евтини) активности</h2>
Index: resources/views/cheap.blade.php
===================================================================
--- resources/views/cheap.blade.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ resources/views/cheap.blade.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -1,150 +1,139 @@
-<!DOCTYPE html>
-<html lang="mk">
-<head>
-    <meta charset="UTF-8"/>
-    <title>Евтини активности</title>
-    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"/>
-    <style>
-        @import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
-        @import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
+<style>
+    @import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
+    @import url("https://fonts.googleapis.com/css2?family=Baloo+2&display=swap");
 
-        body {
-            font-size: 16px;
-            font-weight: normal;
-            margin: 0;
+    a, a:hover {
+        text-decoration: none;
+        transition: color 0.3s ease-in-out;
+        color: #064937 !important;
+    }
+
+    a:hover {
+        color: #89d6ca !important;
+    }
+
+    #pageHeaderTitle {
+        margin: 2rem 0;
+        text-align: center;
+        font-size: 2.5rem;
+        color: #074f44 !important;
+    }
+
+    .postcard {
+        display: flex;
+        border-radius: 10px;
+        margin-bottom: 2rem;
+        box-shadow: 0 5px 20px rgba(48, 176, 156, 0.4);
+        background: linear-gradient(135deg, rgba(158, 207, 195, 0.49) 0%, rgba(168, 222, 217, 0.36) 100%);
+        color: #074f44 !important;
+        transition: box-shadow 0.3s ease;
+    }
+
+    @media screen and (min-width: 769px) {
+        .postcard:nth-child(2n+1) {
+            flex-direction: row;
         }
 
-        a, a:hover {
-            text-decoration: none;
-            transition: color 0.3s ease-in-out;
-            color: #064937; /* темно-зелена */
+        .postcard:nth-child(2n) {
+            flex-direction: row-reverse;
         }
+    }
 
-        a:hover {
-            color: #89d6ca;
-        }
+    .postcard:hover {
+        box-shadow: 0 8px 30px rgba(48, 176, 156, 0.7);
+    }
 
-        #pageHeaderTitle {
-            margin: 2rem 0;
-            text-transform: uppercase;
-            text-align: center;
-            font-size: 2.5rem;
-            color: #074f44;
-        }
+    .postcard__img {
+        width: 330px;
+        object-fit: cover;
+        transition: transform 0.3s ease;
+        height: 270px;
+        object-position: center;
+        display: block;
+    }
 
-        .container {
-            max-width: 1200px;
-            margin: auto;
-            padding: 40px 20px;
-        }
+    .postcard:hover .postcard__img {
+        transform: scale(1.1);
+    }
 
-        .postcard {
-            display: flex;
-            border-radius: 10px;
-            margin-bottom: 2rem;
-            overflow: hidden;
-            box-shadow: 0 5px 20px rgba(48, 176, 156, 0.4);
-            background: linear-gradient(135deg, rgba(158, 207, 195, 0.49) 0%, rgba(168, 222, 217, 0.36) 100%);
-            color: #074f44;
-            transition: box-shadow 0.3s ease;
-        }
+    .postcard__text {
+        padding: 2rem 3rem;
+        flex: 1;
+        position: relative;
+        display: flex;
+        flex-direction: column;
+        justify-content: center;
+    }
 
-        @media screen and (min-width: 769px) {
-            .postcard:nth-child(2n+1) {
-                flex-direction: row;
-            }
+    .postcard__title {
+        font-size: 1.75rem;
+        margin-bottom: 0.5rem;
+        font-weight: 600;
+        color: #064937;
+    }
 
-            .postcard:nth-child(2n) {
-                flex-direction: row-reverse;
-            }
-        }
+    .postcard__bar {
+        width: 50px;
+        height: 6px;
+        border-radius: 5px;
+        background-color: #30b09c;
+        margin: 10px 0 20px 0;
+        transition: width 0.3s ease;
+    }
 
-        .postcard:hover {
-            box-shadow: 0 8px 30px rgba(48, 176, 156, 0.7);
-        }
+    .postcard:hover .postcard__bar {
+        width: 100px;
+    }
 
-        .postcard__img {
-            width: 330px;
-            object-fit: cover;
-            transition: transform 0.3s ease;
-            height: 270px;
-            object-position: center;
-            display: block;
-        }
+    .postcard__preview-txt {
+        font-size: 1rem;
+        line-height: 1.5;
+        color: #064937;
+        text-align: justify;
+        flex-grow: 1;
+    }
 
-        .postcard:hover .postcard__img {
-            transform: scale(1.1);
-        }
+    .postcard__tagbox {
+        margin-top: 20px;
+        display: flex;
+        gap: 10px;
+        flex-wrap: wrap;
+    }
 
-        .postcard__text {
-            padding: 2rem 3rem;
-            flex: 1;
-            position: relative;
-            display: flex;
-            flex-direction: column;
-            justify-content: center;
-        }
+    .tag__item {
+        background-color: rgba(48, 176, 156, 0.2);
+        color: #064937;
+        padding: 6px 12px;
+        border-radius: 4px;
+        font-size: 0.9rem;
+        display: flex;
+        align-items: center;
+        gap: 5px;
+        user-select: none;
+        transition: background-color 0.3s;
+        cursor: default;
+    }
 
-        .postcard__title {
-            font-size: 1.75rem;
-            margin-bottom: 0.5rem;
-            font-weight: 600;
-            color: #064937;
-        }
+    .tag__item:hover {
+        background-color: rgba(48, 176, 156, 0.5);
+    }
 
-        .postcard__bar {
-            width: 50px;
-            height: 6px;
-            border-radius: 5px;
-            background-color: #30b09c;
-            margin: 10px 0 20px 0;
-            transition: width 0.3s ease;
-        }
+    i.fas {
+        color: #30b09c;
+    }
 
-        .postcard:hover .postcard__bar {
-            width: 100px;
-        }
+    #pageHeaderTitle{
+        padding-bottom: 5vh;
+    }
 
-        .postcard__preview-txt {
-            font-size: 1rem;
-            line-height: 1.5;
-            color: #064937;
-            text-align: justify;
-            flex-grow: 1;
-        }
+    .containerCheap{
+        width: 80%;
+        margin-left: 10vw;
+        margin-top: -22vh;
+    }
 
-        .postcard__tagbox {
-            margin-top: 20px;
-            display: flex;
-            gap: 10px;
-            flex-wrap: wrap;
-        }
+</style>
 
-        .tag__item {
-            background-color: rgba(48, 176, 156, 0.2);
-            color: #064937;
-            padding: 6px 12px;
-            border-radius: 4px;
-            font-size: 0.9rem;
-            display: flex;
-            align-items: center;
-            gap: 5px;
-            user-select: none;
-            transition: background-color 0.3s;
-            cursor: default;
-        }
-
-        .tag__item:hover {
-            background-color: rgba(48, 176, 156, 0.5);
-        }
-
-        i.fas {
-            color: #30b09c;
-        }
-
-    </style>
-</head>
-<body>
-<div class="container">
+<div class="containerCheap">
     <h1 id="pageHeaderTitle">Активности под 500 денари</h1>
 
@@ -180,4 +169,2 @@
 
 </div>
-</body>
-</html>
Index: resources/views/destinations/show.blade.php
===================================================================
--- resources/views/destinations/show.blade.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ resources/views/destinations/show.blade.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -401,5 +401,5 @@
 
         <div id="cardActivity" class="col-md-4 col-sm-6 mb-4">
-            <a href="{{ route('travelActivities.index', ['imelokacija' => $destination->imelokacija]) }}"
+            <a href="{{ route('travelActivities.index', ['destination' => $destination->imelokacija]) }}"
                class="text-decoration-none">
                 <div class="card-custom">
@@ -413,5 +413,5 @@
 
         <div id="cardPackage" class="col-md-4 col-sm-6 mb-4">
-            <a href="{{ route('travelPackages.index', ['imelokacija' => $destination->imelokacija]) }}"
+            <a href="{{ route('travelPackages.index', ['destination' => $destination]) }}"
                class="text-decoration-none">
                 <div class="card-custom">
Index: sources/views/explore.blade.php
===================================================================
--- resources/views/explore.blade.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ 	(revision )
@@ -1,1 +1,0 @@
-@include('cheap', ['cheapActivities' => $cheapActivities])
Index: resources/views/home.blade.php
===================================================================
--- resources/views/home.blade.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ resources/views/home.blade.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -14,4 +14,7 @@
         html {
             scroll-behavior: smooth;
+        }
+        ol{
+            margin-top: 0 !important;
         }
     </style>
@@ -128,4 +131,5 @@
 @include('carousel', ['topLocations' => $topLocations])
 @include('cheap', ['cheapActivities' => $cheapActivities])
+@include('cheap-chart', ['data' => $data])
 @include('footer')
 
Index: resources/views/preferences.blade.php
===================================================================
--- resources/views/preferences.blade.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ resources/views/preferences.blade.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -13,4 +13,5 @@
 </head>
 <body>
+
 @if (session('success'))
     <div class="alert alert-success">
@@ -52,46 +53,43 @@
 </div>
 
-
 <div class="wrapper">
     <div class="form-container">
         <h2>Пронајдете ја вашата идеална дестинација</h2>
-        <form>
+
+        <form method="GET" action="{{ route('destinations.index') }}">
             <div class="form-group">
                 <select id="typeDest" name="tipovimesta" class="form-control">
                     <option value="" disabled selected>Тип на место</option>
-                    <option value="allDest">Сите</option>
-                    <option value="exotic">Егзотични дестинации</option>
-                    <option value="rural">Рурални дестинации</option>
-                    <option value="sea">Море</option>
-                    <option value="mountain">Планина</option>
-                    <option value="lake">Езеро</option>
-                    <option value="history">Историја</option>
-                    <option value="beach">Плажа</option>
-                    <option value="city">Град</option>
-                    <option value="village">Село</option>
+                    <option value="any">Сите</option>
+                    <option value="море">Море</option>
+                    <option value="планина">Планина</option>
+                    <option value="езеро">Езеро</option>
+                    <option value="историја">Историја</option>
+                    <option value="плажа">Плажа</option>
+                    <option value="град">Град</option>
+                    <option value="село">Село</option>
                 </select>
-            </div>
-            <div class="form-group">
-                <input type="number" id="first-name" class="form-control" placeholder="Приоритет" min="1" max="10">
             </div>
             <div class="form-group">
                 <select id="season" name="preporachanasezona" class="form-control">
                     <option value="" disabled selected>Посакувана сезона</option>
-                    <option value="allSeasons">Сите</option>
-                    <option value="spring">Пролет</option>
-                    <option value="summer">Лето</option>
-                    <option value="autumn">Есен</option>
-                    <option value="winter">Зима</option>
+                    <option value="any">Сите</option>
+                    <option value="пролет">Пролет</option>
+                    <option value="лето">Лето</option>
+                    <option value="есен">Есен</option>
+                    <option value="зима">Зима</option>
                 </select>
             </div>
             <div class="form-group">
-                <select id="filter" name="filter" class="form-control">
-                    <option value="" disabled selected>Филтер</option>
-                    <option value="season">Сезона</option>
-                    <option value="popularity">Популарност</option>
-                    <option value="typeDest">Тип на место</option>
+                <select id="popularnost" name="popularnost" class="form-control">
+                    <option value="" disabled selected>Популарност</option>
+                    <option value="1-2">1-2</option>
+                    <option value="3-4">3-4</option>
+                    <option value="5-6">5-6</option>
+                    <option value="7-8">7-8</option>
+                    <option value="9-10">9-10</option>
                 </select>
             </div>
-            <button type="submit" class="btn">Во ред</button>
+            <button type="submit" class="btn mt-3">Во ред</button>
         </form>
     </div>
Index: routes/web.php
===================================================================
--- routes/web.php	(revision 6045f7200f562e006c47110d487d8d522ab9b07f)
+++ routes/web.php	(revision a17bc4e46fe4cd0358521a43bf800fe525e51881)
@@ -25,10 +25,7 @@
 Route::get('destinations/{imelokacija}/packages', [DestinationController::class, 'packages'])->name('package.index');
 Route::get('/destinations/{destination}/travel-events', [EventController::class, 'travelEvents'])->name('travelEvents.index');
-Route::get('/destinations/{imelokacija}/travel-activities', [ActivityController::class, 'travelActivities'])->name('travelActivities.index');
-Route::get('/destinations/{imelokacija}/travel-packages', [PackageController::class, 'travelPackages'])->name('travelPackages.index');
+Route::get('/destinations/{destination}/travel-activities', [ActivityController::class, 'travelActivities'])->name('travelActivities.index');
+Route::get('/destinations/{destination}/travel-packages', [PackageController::class, 'travelPackages'])->name('travelPackages.index');
 Route::get('/weather/{imelokacija}', [WeatherConditionController::class, 'show'])->name('weather.show');
-
-Route::get('/explore', [DestinationController::class, 'explore'])->name('explore');
-Route::get('/cheap-chart', [DestinationController::class, 'cheapActivitiesChart'])->name('cheap.chart');
 
 
