Index: app/Http/Controllers/AuthController.php
===================================================================
--- app/Http/Controllers/AuthController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Controllers/AuthController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,42 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use App\Models\Korisnik;
+use App\Models\User;
+use Illuminate\Http\Request;
+use Illuminate\Support\Facades\Auth;
+
+class AuthController extends Controller
+{
+    public function showLoginForm(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        return view('login');
+    }
+
+    public function store(Request $request): \Illuminate\Http\RedirectResponse
+    {
+        $request->validate([
+            'ime' => 'required|string|max:255',
+            'prezime' => 'required|string|max:255',
+            'eposhta' => 'required|email',
+            'telbr' => 'required|string|max:20',
+            'datumragjanje' => 'required|date',
+        ]);
+
+        $korisnik = Korisnik::where('eposhta', $request->eposhta)->first();
+
+        if (!$korisnik) {
+            $korisnik = new Korisnik();
+            $korisnik->ime = $request->ime;
+            $korisnik->prezime = $request->prezime;
+            $korisnik->eposhta = $request->eposhta;
+            $korisnik->telbr = $request->telbr;
+            $korisnik->datumragjanje = $request->datumragjanje;
+            $korisnik->save();
+        }
+
+        return redirect()->route('preferences')->with('success', 'Успешно сте најавени!');
+    }
+
+}
Index: app/Http/Controllers/DestinationController.php
===================================================================
--- app/Http/Controllers/DestinationController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Controllers/DestinationController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,55 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use App\Models\Destination;
+use Illuminate\Contracts\View\Factory;
+use Illuminate\Contracts\View\View;
+use Illuminate\Foundation\Application;
+use Illuminate\Http\Request;
+
+class DestinationController extends Controller
+{
+    public function index(): View|Factory|Application
+    {
+        $destinations = Destination::all();
+
+        return view('destinations/index', compact('destinations'));
+    }
+
+    public function show(Destination $destination): View|Factory|Application
+    {
+        return view('destinations/show', compact('destination'));
+    }
+
+    public function search(Request $request): Application|Factory|View
+    {
+        $tipovimesta = $request->input('tipovimesta');
+        $preporachanasezona = $request->input('preporachanasezona');
+        $filter = $request->input('filter');
+
+        $destinations = Destination::query();
+
+        if ($tipovimesta && $tipovimesta !== 'allDest') {
+            $destinations->where('tipovimesta', $tipovimesta);
+        }
+
+        if ($preporachanasezona && $preporachanasezona !== 'allSeasons') {
+            $destinations->where('preporachanasezona', $preporachanasezona);
+        }
+
+        if ($filter === 'popularnost') {
+            $destinations->orderBy('popularnost', 'desc');
+        } elseif ($filter === 'season') {
+            $destinations->orderBy('preporachanasezona');
+        } elseif ($filter === 'typeDest') {
+            $destinations->orderBy('tipovimesta');
+        }
+
+        $results = $destinations->get();
+
+        return view('search', compact('results'));
+    }
+
+
+}
Index: app/Http/Controllers/PreferencesController.php
===================================================================
--- app/Http/Controllers/PreferencesController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Controllers/PreferencesController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,13 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use Illuminate\Http\Request;
+
+class PreferencesController extends Controller
+{
+    public function index(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+            return view('preferences');
+    }
+}
Index: app/Http/Controllers/SearchController.php
===================================================================
--- app/Http/Controllers/SearchController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Controllers/SearchController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,45 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use App\Models\Destination;
+use Illuminate\Http\Request;
+
+class SearchController extends Controller
+{
+    public function index(): \Illuminate\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
+    {
+        $results = collect([]); // Празен резултат по дефиниција
+
+        return view('destinations.search', compact('results'));
+    }
+
+    public function search(Request $request): \Illuminate\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
+    {
+        $tipovimesta = $request->input('tipovimesta');
+        $preporachanasezona = $request->input('preporachanasezona');
+        $filter = $request->input('filter');
+
+        $destinations = Destination::query();
+
+        if ($tipovimesta && $tipovimesta !== 'allDest') {
+            $destinations->where('tipovimesta', $tipovimesta);
+        }
+
+        if ($preporachanasezona && $preporachanasezona !== 'allSeasons') {
+            $destinations->where('preporachanasezona', $preporachanasezona);
+        }
+
+        if ($filter === 'popularnost') {
+            $destinations->orderBy('popularnost', 'desc');
+        } elseif ($filter === 'season') {
+            $destinations->orderBy('preporachanasezona');
+        } elseif ($filter === 'typeDest') {
+            $destinations->orderBy('tipovimesta');
+        }
+
+        $results = $destinations->get();
+
+        return view('destinations.search', compact('results'));
+    }
+}
Index: app/Http/Controllers/TravelActivityController.php
===================================================================
--- app/Http/Controllers/TravelActivityController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Controllers/TravelActivityController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,55 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use App\Http\Requests\TravelActivityRequest;
+use App\Models\TravelActivity;
+use Illuminate\Http\Request;
+
+class TravelActivityController extends Controller
+{
+    public function index(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        $travelActivities = TravelActivity::all();
+
+        return view('travel-activities/index', compact('travelActivities'));
+    }
+
+    public function create(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        return view('travel-activities.create');
+    }
+
+    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',
+        ]);
+
+        TravelActivity::create($validatedData);
+
+        return redirect()->route('travel-activities.index')->with('success', 'Активноста е успешно креирана!');
+    }
+
+    public function edit(TravelActivity $travelActivity): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        return view('travel-activities/edit', compact('travelActivity'));
+    }
+
+    public function update(TravelActivity $travelActivity, TravelActivityRequest $request): \Illuminate\Http\RedirectResponse
+    {
+        $travelActivity->update($request->validated());
+
+        return redirect()->route('travel-activities.index')->with('success', 'Активноста е успешно изменета!');
+    }
+
+    public function destroy(TravelActivity $travelActivity): \Illuminate\Http\RedirectResponse
+    {
+        $travelActivity->delete();
+        return redirect()->route('travel-activities.index')->with('success', 'Активноста е успешно избришана!');
+    }
+
+}
Index: app/Http/Controllers/TravelEventController.php
===================================================================
--- app/Http/Controllers/TravelEventController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Controllers/TravelEventController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,55 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use App\Http\Requests\TravelEventRequest;
+use App\Models\TravelEvent;
+use Illuminate\Http\Request;
+
+class TravelEventController extends Controller
+{
+    public function index(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        $travelEvents = TravelEvent::all();
+
+        return view('travel-events/index', compact('travelEvents'));
+    }
+
+    public function create(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        return view('travel-events.create');
+    }
+
+    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',
+        ]);
+
+        TravelEvent::create($validatedData);
+
+        return redirect()->route('travel-events.index')->with('success', 'Настанот е успешно креиран!');
+    }
+
+    public function edit(TravelEvent $travelEvent): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        return view('travel-events/edit', compact('travelEvent'));
+    }
+
+    public function update(TravelEvent $travelEvent, TravelEventRequest $request): \Illuminate\Http\RedirectResponse
+    {
+        $travelEvent->update($request->validated());
+
+        return redirect()->route('travel-events.index')->with('success', 'Настанот е успешно изменет!');
+    }
+
+    public function destroy(TravelEvent $travelEvent): \Illuminate\Http\RedirectResponse
+    {
+        $travelEvent->delete();
+        return redirect()->route('travel-events.index')->with('success', 'Настанот е успешно избришан!');
+    }
+}
Index: app/Http/Controllers/TravelPackageController.php
===================================================================
--- app/Http/Controllers/TravelPackageController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Controllers/TravelPackageController.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,53 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use App\Http\Requests\TravelPackageRequest;
+use App\Models\TravelPackage;
+use Illuminate\Http\Request;
+
+class TravelPackageController extends Controller
+{
+    public function index(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        $travelPackages = TravelPackage::all();
+        return view('travel-packages.index', compact('travelPackages'));
+    }
+
+    public function create(): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        return view('travel-packages.create');
+    }
+
+    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',
+        ]);
+
+        TravelPackage::create($validatedData);
+
+        return redirect()->route('travel-packages.index')->with('success', 'Пакетот е успешно креиран!');
+    }
+
+    public function edit(TravelPackage $travelPackage): \Illuminate\Contracts\View\View|\Illuminate\Contracts\View\Factory|\Illuminate\Foundation\Application
+    {
+        return view('travel-packages.edit', compact('travelPackage'));
+    }
+
+    public function update(TravelPackage $travelPackage, TravelPackageRequest $request): \Illuminate\Http\RedirectResponse
+    {
+        $travelPackage->update($request->validated());
+
+        return redirect()->route('travel-packages.index')->with('success', 'Пакетот е успешно изменет!');
+    }
+
+    public function destroy(TravelPackage $travelPackage): \Illuminate\Http\RedirectResponse
+    {
+        $travelPackage->delete();
+        return redirect()->route('travel-packages.index')->with('success', 'Пакетот е успешно избришан!');
+    }
+}
Index: app/Http/Requests/TravelActivityRequest.php
===================================================================
--- app/Http/Requests/TravelActivityRequest.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Requests/TravelActivityRequest.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,18 @@
+<?php
+
+namespace App\Http\Requests;
+
+use Illuminate\Foundation\Http\FormRequest;
+
+class TravelActivityRequest extends FormRequest
+{
+    public function rules(): array
+    {
+        return [
+            'imeaktivnost' => 'required|string|max:255',
+            'informacii' => 'nullable|string|max:255',
+            'kategorija' => 'required|string|max:255',
+            'iznos' => 'nullable|numeric',
+        ];
+    }
+}
Index: app/Http/Requests/TravelEventRequest.php
===================================================================
--- app/Http/Requests/TravelEventRequest.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Requests/TravelEventRequest.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,19 @@
+<?php
+
+namespace App\Http\Requests;
+
+use Illuminate\Foundation\Http\FormRequest;
+
+class TravelEventRequest extends FormRequest
+{
+    public function rules(): array
+    {
+        return [
+            'naziv' => 'required|string|max:255',
+            'vidovi' => 'required|string|max:255',
+            'detali' => 'nullable|string|max:255',
+            'pochetendatum' => 'required|date',
+            'kraendatum' => 'required|date|after_or_equal:pochetendatum',
+        ];
+    }
+}
Index: app/Http/Requests/TravelPackageRequest.php
===================================================================
--- app/Http/Requests/TravelPackageRequest.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Http/Requests/TravelPackageRequest.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,18 @@
+<?php
+
+namespace App\Http\Requests;
+
+use Illuminate\Foundation\Http\FormRequest;
+
+class TravelPackageRequest extends FormRequest
+{
+    public function rules(): array
+    {
+        return [
+            '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:pochetendatum',
+        ];
+    }
+}
Index: app/Models/Destination.php
===================================================================
--- app/Models/Destination.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Models/Destination.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,12 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class Destination extends Model
+{
+    protected $table = 'travel_sage.destinacii';
+
+    protected $primaryKey = 'iddest';
+}
Index: app/Models/Korisnik.php
===================================================================
--- app/Models/Korisnik.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Models/Korisnik.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,17 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Factories\HasFactory;
+use Illuminate\Database\Eloquent\Model;
+
+class Korisnik extends Model
+{
+    use HasFactory;
+
+    protected $table = 'travel_sage.korisnici';
+    public $timestamps = false;
+
+    protected $primaryKey = 'idkorisnik';
+
+}
Index: app/Models/TravelActivity.php
===================================================================
--- app/Models/TravelActivity.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Models/TravelActivity.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,14 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class TravelActivity extends Model
+{
+    protected $table = 'travel_sage.aktivnosti';
+
+    protected $primaryKey = 'idaktivnost';
+
+    public $timestamps = false;
+}
Index: app/Models/TravelEvent.php
===================================================================
--- app/Models/TravelEvent.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Models/TravelEvent.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,14 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class TravelEvent extends Model
+{
+    protected $table = 'travel_sage.nastani';
+
+    protected $primaryKey = 'idnastan';
+
+    public $timestamps = false;
+}
Index: app/Models/TravelPackage.php
===================================================================
--- app/Models/TravelPackage.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ app/Models/TravelPackage.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,14 @@
+<?php
+
+namespace App\Models;
+
+use Illuminate\Database\Eloquent\Model;
+
+class TravelPackage extends Model
+{
+    protected $table = 'travel_sage.paketi';
+
+    protected $primaryKey = 'idpaket';
+
+    public $timestamps = false;
+}
Index: app/Models/User.php
===================================================================
--- app/Models/User.php	(revision 7bbc4e6c6223e78eb9a6d2b102427a7c5876808c)
+++ app/Models/User.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -8,4 +8,8 @@
 use Illuminate\Notifications\Notifiable;
 
+/**
+ * @method static create(array $validatedData)
+ * @method static where(string $string, mixed $email)
+ */
 class User extends Authenticatable
 {
@@ -34,4 +38,6 @@
     ];
 
+
+
     /**
      * Get the attributes that should be cast.
Index: app/Providers/AppServiceProvider.php
===================================================================
--- app/Providers/AppServiceProvider.php	(revision 7bbc4e6c6223e78eb9a6d2b102427a7c5876808c)
+++ app/Providers/AppServiceProvider.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -3,4 +3,5 @@
 namespace App\Providers;
 
+use Illuminate\Database\Eloquent\Model;
 use Illuminate\Support\ServiceProvider;
 
@@ -20,5 +21,5 @@
     public function boot(): void
     {
-        //
+        Model::unguard();
     }
 }
Index: composer.json
===================================================================
--- composer.json	(revision 7bbc4e6c6223e78eb9a6d2b102427a7c5876808c)
+++ composer.json	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -8,4 +8,5 @@
     "require": {
         "php": "^8.2",
+        "doctrine/dbal": "^4.2",
         "laravel/framework": "^11.31",
         "laravel/tinker": "^2.9"
Index: composer.lock
===================================================================
--- composer.lock	(revision 7bbc4e6c6223e78eb9a6d2b102427a7c5876808c)
+++ composer.lock	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -5,5 +5,5 @@
         "This file is @generated automatically"
     ],
-    "content-hash": "e08334651ce0b12e409af9e125ee397d",
+    "content-hash": "7dd6206074cd706f0b0e84ced4b71d0e",
     "packages": [
         {
@@ -210,4 +210,155 @@
             },
             "time": "2024-07-08T12:26:09+00:00"
+        },
+        {
+            "name": "doctrine/dbal",
+            "version": "4.2.2",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/dbal.git",
+                "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/dbal/zipball/19a2b7deb5fe8c2df0ff817ecea305e50acb62ec",
+                "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec",
+                "shasum": ""
+            },
+            "require": {
+                "doctrine/deprecations": "^0.5.3|^1",
+                "php": "^8.1",
+                "psr/cache": "^1|^2|^3",
+                "psr/log": "^1|^2|^3"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "12.0.0",
+                "fig/log-test": "^1",
+                "jetbrains/phpstorm-stubs": "2023.2",
+                "phpstan/phpstan": "2.1.1",
+                "phpstan/phpstan-phpunit": "2.0.3",
+                "phpstan/phpstan-strict-rules": "^2",
+                "phpunit/phpunit": "10.5.39",
+                "slevomat/coding-standard": "8.13.1",
+                "squizlabs/php_codesniffer": "3.10.2",
+                "symfony/cache": "^6.3.8|^7.0",
+                "symfony/console": "^5.4|^6.3|^7.0"
+            },
+            "suggest": {
+                "symfony/console": "For helpful console commands such as SQL execution and import of files."
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\DBAL\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "Guilherme Blanco",
+                    "email": "guilhermeblanco@gmail.com"
+                },
+                {
+                    "name": "Roman Borschel",
+                    "email": "roman@code-factory.org"
+                },
+                {
+                    "name": "Benjamin Eberlei",
+                    "email": "kontakt@beberlei.de"
+                },
+                {
+                    "name": "Jonathan Wage",
+                    "email": "jonwage@gmail.com"
+                }
+            ],
+            "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
+            "homepage": "https://www.doctrine-project.org/projects/dbal.html",
+            "keywords": [
+                "abstraction",
+                "database",
+                "db2",
+                "dbal",
+                "mariadb",
+                "mssql",
+                "mysql",
+                "oci8",
+                "oracle",
+                "pdo",
+                "pgsql",
+                "postgresql",
+                "queryobject",
+                "sasql",
+                "sql",
+                "sqlite",
+                "sqlserver",
+                "sqlsrv"
+            ],
+            "support": {
+                "issues": "https://github.com/doctrine/dbal/issues",
+                "source": "https://github.com/doctrine/dbal/tree/4.2.2"
+            },
+            "funding": [
+                {
+                    "url": "https://www.doctrine-project.org/sponsorship.html",
+                    "type": "custom"
+                },
+                {
+                    "url": "https://www.patreon.com/phpdoctrine",
+                    "type": "patreon"
+                },
+                {
+                    "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
+                    "type": "tidelift"
+                }
+            ],
+            "time": "2025-01-16T08:40:56+00:00"
+        },
+        {
+            "name": "doctrine/deprecations",
+            "version": "1.1.4",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/doctrine/deprecations.git",
+                "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
+                "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
+                "shasum": ""
+            },
+            "require": {
+                "php": "^7.1 || ^8.0"
+            },
+            "require-dev": {
+                "doctrine/coding-standard": "^9 || ^12",
+                "phpstan/phpstan": "1.4.10 || 2.0.3",
+                "phpstan/phpstan-phpunit": "^1.0 || ^2",
+                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
+                "psr/log": "^1 || ^2 || ^3"
+            },
+            "suggest": {
+                "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
+            },
+            "type": "library",
+            "autoload": {
+                "psr-4": {
+                    "Doctrine\\Deprecations\\": "src"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
+            "homepage": "https://www.doctrine-project.org/",
+            "support": {
+                "issues": "https://github.com/doctrine/deprecations/issues",
+                "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
+            },
+            "time": "2024-12-07T21:18:45+00:00"
         },
         {
@@ -2585,4 +2736,53 @@
         },
         {
+            "name": "psr/cache",
+            "version": "3.0.0",
+            "source": {
+                "type": "git",
+                "url": "https://github.com/php-fig/cache.git",
+                "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
+            },
+            "dist": {
+                "type": "zip",
+                "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
+                "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
+                "shasum": ""
+            },
+            "require": {
+                "php": ">=8.0.0"
+            },
+            "type": "library",
+            "extra": {
+                "branch-alias": {
+                    "dev-master": "1.0.x-dev"
+                }
+            },
+            "autoload": {
+                "psr-4": {
+                    "Psr\\Cache\\": "src/"
+                }
+            },
+            "notification-url": "https://packagist.org/downloads/",
+            "license": [
+                "MIT"
+            ],
+            "authors": [
+                {
+                    "name": "PHP-FIG",
+                    "homepage": "https://www.php-fig.org/"
+                }
+            ],
+            "description": "Common interface for caching libraries",
+            "keywords": [
+                "cache",
+                "psr",
+                "psr-6"
+            ],
+            "support": {
+                "source": "https://github.com/php-fig/cache/tree/3.0.0"
+            },
+            "time": "2021-02-03T23:26:27+00:00"
+        },
+        {
             "name": "psr/clock",
             "version": "1.0.0",
@@ -5893,49 +6093,4 @@
             ],
             "time": "2024-12-11T14:50:44+00:00"
-        },
-        {
-            "name": "doctrine/deprecations",
-            "version": "1.1.4",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/doctrine/deprecations.git",
-                "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
-                "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
-                "shasum": ""
-            },
-            "require": {
-                "php": "^7.1 || ^8.0"
-            },
-            "require-dev": {
-                "doctrine/coding-standard": "^9 || ^12",
-                "phpstan/phpstan": "1.4.10 || 2.0.3",
-                "phpstan/phpstan-phpunit": "^1.0 || ^2",
-                "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
-                "psr/log": "^1 || ^2 || ^3"
-            },
-            "suggest": {
-                "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "Doctrine\\Deprecations\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
-            "homepage": "https://www.doctrine-project.org/",
-            "support": {
-                "issues": "https://github.com/doctrine/deprecations/issues",
-                "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
-            },
-            "time": "2024-12-07T21:18:45+00:00"
         },
         {
Index: config/database.php
===================================================================
--- config/database.php	(revision 7bbc4e6c6223e78eb9a6d2b102427a7c5876808c)
+++ config/database.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -86,14 +86,14 @@
             'driver' => 'pgsql',
             'url' => env('DB_URL'),
-            'host' => env('DB_HOST', '127.0.0.1'),
+            'host' => env('DB_HOST', 'localhost'),
             'port' => env('DB_PORT', '5432'),
-            'database' => env('DB_DATABASE', 'laravel'),
-            'username' => env('DB_USERNAME', 'root'),
-            'password' => env('DB_PASSWORD', ''),
+            'database' => env('DB_DATABASE', 'db_202425z_va_prj_travel_sage'),
+            'username' => env('DB_USERNAME', 'db_202425z_va_prj_travel_sage_owner'),
+            'password' => env('DB_PASSWORD', 'b0a028111497'),
             'charset' => env('DB_CHARSET', 'utf8'),
             'prefix' => '',
             'prefix_indexes' => true,
             'search_path' => 'public',
-            'sslmode' => 'prefer',
+            'sslmode' => 'disable',
         ],
 
Index: public/CSSs/detailsDest.css
===================================================================
--- public/CSSs/detailsDest.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ public/CSSs/detailsDest.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,299 @@
+* {
+    font-family: sans-serif;
+}
+
+body{
+    overflow-x: hidden;
+}
+
+.navbar {
+    background-color: #00000026;
+    position: absolute !important;
+    width: 100%;
+    z-index: 1000;
+    padding: 10px 20px;
+    position: relative;
+    display: flex;
+    align-items: center;
+    color: whitesmoke;
+}
+
+.logo {
+    height: 73px;
+}
+.navbar {
+    background-color: #00000026;
+    position: fixed;
+    width: 100%;
+    z-index: 1000;
+    padding: 10px 20px;
+    display: flex;
+    align-items: center;
+    color: whitesmoke;
+}
+
+.navbar-nav {
+    margin-left: auto;
+}
+
+.navbar-brand, .nav-link, .navbar-dark, .navbar-nav  {
+    font-size: x-large;
+    color: whitesmoke;
+    font-family: sans-serif;
+}
+
+.nav-link {
+    transition: color 0.3s, text-decoration 0.3s;
+}
+
+.nav-link:hover {
+    border-bottom: 2px solid #33b298;
+    padding-bottom: 2px;
+}
+
+footer {
+    background-color: #f8f9fa;
+    text-align: center;
+    padding: 20px 0;
+    width: 100%;
+    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
+}
+
+footer .container {
+    max-width: 1200px;
+    margin: 0 auto;
+}
+
+.imgFooter .col-lg-2 {
+    padding: 5px;
+}
+
+.imgFooter img {
+    width: 100%;
+    height: 16vh;
+    border-radius: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.imgFooter img:hover {
+    transform: scale(1.1);
+}
+
+.footerIcons {
+    margin-top: 10px;
+}
+
+.social-icon {
+    display: inline-block;
+    font-size: 18px;
+    width: 40px;
+    height: 40px;
+    line-height: 40px;
+    text-align: center;
+    border-radius: 50%;
+    color: white;
+    margin: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.social-icon:hover {
+    transform: scale(1.1);
+}
+
+footer .text-center {
+    font-size: 14px;
+    color: #555;
+}
+
+footer .text-center a {
+    text-decoration: none;
+    color: rgba(239, 233, 233, 0.67);
+}
+
+footer .text-center a:hover {
+    text-decoration: underline;
+}
+
+.cards{
+    padding-top: 20vh;
+    margin-left: 12vw;
+    padding-bottom: 20vh;
+    display: grid;
+    width: 80%;
+}
+
+.card-big-shadow {
+    max-width: 320px;
+    position: relative;
+}
+
+.coloured-cards .card {
+    margin-top: 30px;
+}
+
+.card[data-radius="none"] {
+    border-radius: 0px;
+}
+.card {
+    border-radius: 8px;
+    box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
+    background-color: #FFFFFF;
+    color: #252422;
+    margin-bottom: 20px;
+    position: relative;
+    z-index: 1;
+}
+
+.card[data-background="image"] .title, .card[data-background="image"] .stats, .card[data-background="image"] .category, .card[data-background="image"] .description, .card[data-background="image"] .content, .card[data-background="image"] .card-footer, .card[data-background="image"] small, .card[data-background="image"] .content a, .card[data-background="color"] .title, .card[data-background="color"] .stats, .card[data-background="color"] .category, .card[data-background="color"] .description, .card[data-background="color"] .content, .card[data-background="color"] .card-footer, .card[data-background="color"] small, .card[data-background="color"] .content a {
+    color: #FFFFFF;
+}
+.card.card-just-text .content {
+    padding: 50px 65px;
+    text-align: center;
+}
+.card .content {
+    padding: 20px 20px 10px 20px;
+}
+.card[data-color="blue"] .category {
+    color: #7a9e9f;
+}
+
+.card .category, .card .label {
+    font-size: 14px;
+    margin-bottom: 0px;
+}
+.card-big-shadow:before {
+    background-image: url("http://static.tumblr.com/i21wc39/coTmrkw40/shadow.png");
+    background-position: center bottom;
+    background-repeat: no-repeat;
+    background-size: 100% 100%;
+    bottom: -12%;
+    content: "";
+    display: block;
+    left: -12%;
+    position: absolute;
+    right: 0;
+    top: 0;
+    z-index: 0;
+}
+h4, .h4 {
+    font-size: 1.5em;
+    font-weight: 600;
+    line-height: 1.2em;
+}
+h6, .h6 {
+    font-size: 0.9em;
+    font-weight: 600;
+    text-transform: uppercase;
+}
+.card .description {
+    font-size: 16px;
+    color: #66615b;
+}
+.content-card{
+    margin-top:30px;
+}
+a:hover, a:focus {
+    text-decoration: none;
+}
+.card[data-color="green"] .category, .card[data-color="purple"] .category, .card[data-color="blue"] .category {
+    color: whitesmoke;
+}
+.card[data-color="blue"] {
+    background: radial-gradient(circle, rgba(133,170,197,1) 0%, rgba(165,228,233,1) 29%, rgba(215,240,244,1) 100%);
+}
+
+.card[data-color="green"] {
+    background: radial-gradient(circle, rgba(101,160,124,1) 0%, rgba(181,234,184,1) 27%, rgba(208,226,208,1) 100%);
+}
+
+.card[data-color="purple"] {
+    background: radial-gradient(circle, rgba(146,107,132,1) 0%, rgba(234,181,212,1) 44%, rgba(239,218,235,1) 100%);
+}
+
+.card:hover {
+    transform: translateY(-10px);
+    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
+}
+
+.icon-container {
+    position: relative;
+    display: inline-block;
+    font-size: 60px;
+    float: right;
+    margin-top: 5vh;
+    margin-left: 28vw;
+}
+
+.icon-container i {
+    position: absolute;
+}
+
+.icon-container .fa-cloud {
+    z-index: 1;
+    color: #3dcfff;
+}
+
+.icon-container .fa-sun {
+    z-index: 0;
+    left: 8px;
+    top: -5px;
+    color: #f7f95d;
+    position: absolute;
+    left: 22px;
+    top: -15px;
+}
+
+#rez{
+    height: 6vh;
+    border: none;
+    border-radius: 10px;
+    margin-top: 1vh;
+    margin-left: 34vw;
+    width: 11vw;
+}
+.gallery {
+    --s: 150px; /* control the size */
+    --g: 10px;  /* control the gap */
+    display: grid;
+    margin: calc(var(--s) + var(--g));
+    margin-left: 46vw;
+    margin-top: 7vh;
+}
+
+.gallery > img {
+    grid-area: 1/1;
+    width: var(--s);
+    aspect-ratio: 1.15;
+    object-fit: cover;
+    clip-path: polygon(25% 0%, 75% 0%, 100% 50%,75% 100%,25% 100%,0 50%);
+    transform: translate(var(--_x,0),var(--_y,0)) scale(var(--_t,1));
+    cursor: pointer;
+    filter: grayscale(80%);
+    transition: .2s linear;
+}
+.gallery > img:hover {
+    filter: grayscale(0);
+    z-index: 1;
+    --_t: 1.2;
+}
+
+.gallery > img:nth-child(1) {--_y: calc(-100% - var(--g))}
+.gallery > img:nth-child(7) {--_y: calc( 100% + var(--g))}
+.gallery > img:nth-child(3),
+.gallery > img:nth-child(5) {--_x: calc(-75% - .87*var(--g))}
+.gallery > img:nth-child(4),
+.gallery > img:nth-child(6) {--_x: calc( 75% + .87*var(--g))}
+.gallery > img:nth-child(3),
+.gallery > img:nth-child(4) {--_y: calc(-50% - .5*var(--g))}
+.gallery > img:nth-child(5),
+.gallery > img:nth-child(6) {--_y: calc( 50% + .5*var(--g))}
+
+
+body {
+    margin: 0;
+    min-height: 100vh;
+    display: grid;
+    place-content: center;
+}
+
Index: public/CSSs/homeStyle.css
===================================================================
--- public/CSSs/homeStyle.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ public/CSSs/homeStyle.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,808 @@
+* {
+    font-family: sans-serif;
+}
+
+.navbar {
+    background-color: #00000026;
+    position: absolute !important;
+    width: 100%;
+    z-index: 1000;
+    padding: 10px 20px;
+    position: relative;
+    display: flex;
+    align-items: center;
+}
+
+.logo {
+    height: 73px;
+}
+
+.navbar-nav {
+    margin-left: auto;
+}
+
+.navbar-brand, .nav-link, .navbar-dark, .navbar-nav  {
+    font-size: x-large;
+    color: whitesmoke;
+    font-family: sans-serif;
+    cursor: pointer;
+}
+
+.nav-link {
+    transition: color 0.3s, text-decoration 0.3s;
+}
+
+.nav-link:hover {
+    border-bottom: 2px solid #33b298;
+    padding-bottom: 2px;
+}
+
+.carousel-item {
+    position: relative;
+    height: 100vh;
+    width: 100vw;
+    background-size: cover;
+    background-position: center;
+}
+
+.carousel-inner img {
+    width: 100%;
+    height: 100vh;
+    object-fit: cover;
+    /*object-position: center top;*/
+    object-position: 80% 35%;
+}
+
+.carousel-control-prev-icon{
+    margin-left: -115px;
+    top: 80vh;
+}
+
+.carousel-control-next-icon{
+    top: 80vh;
+    margin-right: -110px;
+}
+
+@import url("https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css");
+@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@300;500;700&display=swap");
+
+*,
+*::before,
+*::after {
+    margin: 0;
+    padding: 0;
+    box-sizing: border-box;
+}
+
+body {
+    --color: rgba(30, 30, 30);
+    --bgColor: rgba(245, 245, 245);
+    min-height: 100vh;
+    display: grid;
+    align-content: center;
+    gap: 2rem;
+    color: var(--color);
+    background: var(--bgColor);
+}
+
+ol {
+    width: min(60rem, 90%);
+    margin-inline: auto;
+    margin-top: 10vh !important;
+    display: flex;
+    justify-content: center;
+    flex-wrap: wrap;
+    gap: 2rem;
+    list-style: none;
+    counter-reset: stepnr;
+}
+
+li:nth-child(6n + 1) { --accent-color: #b8df4e }
+li:nth-child(6n + 2) { --accent-color: #4cbccb }
+li:nth-child(6n + 3) { --accent-color: #7197d3 }
+li:nth-child(6n + 4) { --accent-color: #ae78cb }
+li:nth-child(6n + 5) { --accent-color: #7dc7a4 }
+li:nth-child(6n + 6) { --accent-color: #f078c2 }
+
+ol li {
+    counter-increment: stepnr;
+    width: 18rem;
+    --borderS: 2rem;
+    aspect-ratio: 1;
+    display: flex;
+    flex-direction: column;
+    justify-content: center;
+    padding-left: calc(var(--borderS) + 2rem);
+    position: relative;
+}
+
+ol li::before,
+ol li::after {
+    inset: 0;
+    position: absolute;
+    border-radius: 50%;
+    border: var(--borderS) solid var(--bgColor);
+    line-height: 1.1;
+}
+
+ol li::before {
+    content: counter(stepnr);
+    color: var(--accent-color);
+    padding-left: 10rem;
+    font-size: 12rem;
+    font-weight: 700;
+    overflow: hidden;
+}
+
+ol li::after {
+    content: "";
+    filter: drop-shadow(-0.25rem 0.25rem 0.0675rem rgba(0, 0, 0, 0.75)) blur(5px);
+}
+
+ol li > * {
+    width: 7.5rem
+}
+
+ol li .icon {
+    font-size: 2rem;
+    color: var(--accent-color);
+    text-align: center;
+    padding-bottom: 2.3vh;
+}
+
+ol li .title {
+    font-size: 2rem;
+    font-weight: 500
+}
+
+ol li .descr {
+    font-size: 0.8rem;
+    text-align: center;
+}
+
+.credits {
+    margin-top: 2rem;
+    text-align: right
+}
+s
+.credits a {
+    color: var(--color)
+}
+
+
+.type--A{
+    --line_color : #555555 ;
+    --back_color : #FFECF6  ;
+}
+.type--B{
+    --line_color : #1b1919 ;
+    --back_color : #E9ECFF
+}
+.type--C{
+    --line_color : #00135C ;
+    --back_color : #DEFFFA
+}
+.button{
+    position : relative ;
+    z-index : 0 ;
+    width : 240px ;
+    height : 56px ;
+    text-decoration : none ;
+    font-size : 14px ;
+    font-weight : bold ;
+    color : var(--line_color) ;
+    letter-spacing : 2px ;
+    transition : all .3s ease ;
+}
+.button__text{
+    display : flex ;
+    justify-content : center ;
+    align-items : center ;
+    width : 100% ;
+    height : 100% ;
+}
+.button::before,
+.button::after,
+.button__text::before,
+.button__text::after{
+    content : '' ;
+    position : absolute ;
+    height : 3px ;
+    border-radius : 2px ;
+    background : var(--line_color) ;
+    transition : all .5s ease ;
+}
+.button::before{
+    top : 0 ;
+    left : 54px ;
+    width : calc( 100% - 56px * 2 - 16px ) ;
+}
+.button::after{
+    top : 0 ;
+    right : 54px ;
+    width : 8px ;
+}
+.button__text::before{
+    bottom : 0 ;
+    right : 54px ;
+    width : calc( 100% - 56px * 2 - 16px ) ;
+}
+.button__text::after{
+    bottom : 0 ;
+    left : 54px ;
+    width : 8px ;
+}
+.button__line{
+    position : absolute ;
+    top : 0 ;
+    width : 56px ;
+    height : 100% ;
+    overflow : hidden ;
+}
+.button__line::before{
+    content : '' ;
+    position : absolute ;
+    top : 0 ;
+    width : 150% ;
+    height : 100% ;
+    box-sizing : border-box ;
+    border-radius : 300px ;
+    border : solid 3px var(--line_color) ;
+}
+.button__line:nth-child(1),
+.button__line:nth-child(1)::before{
+    left : 0 ;
+}
+.button__line:nth-child(2),
+.button__line:nth-child(2)::before{
+    right : 0 ;
+}
+.button:hover{
+    letter-spacing : 6px ;
+}
+.button:hover::before,
+.button:hover .button__text::before{
+    width : 8px ;
+}
+.button:hover::after,
+.button:hover .button__text::after{
+    width : calc( 100% - 56px * 2 - 16px ) ;
+}
+.button__drow1,
+.button__drow2{
+    position : absolute ;
+    z-index : -1 ;
+    border-radius : 16px ;
+    transform-origin : 16px 16px ;
+}
+.button__drow1{
+    top : -16px ;
+    left : 40px ;
+    width : 32px ;
+    height : 0;
+    transform : rotate( 30deg ) ;
+}
+.button__drow2{
+    top : 44px ;
+    left : 77px ;
+    width : 32px ;
+    height : 0 ;
+    transform : rotate(-127deg ) ;
+}
+.button__drow1::before,
+.button__drow1::after,
+.button__drow2::before,
+.button__drow2::after{
+    content : '' ;
+    position : absolute ;
+}
+.button__drow1::before{
+    bottom : 0 ;
+    left : 0 ;
+    width : 0 ;
+    height : 32px ;
+    border-radius : 16px ;
+    transform-origin : 16px 16px ;
+    transform : rotate( -60deg ) ;
+}
+.button__drow1::after{
+    top : -10px ;
+    left : 45px ;
+    width : 0 ;
+    height : 32px ;
+    border-radius : 16px ;
+    transform-origin : 16px 16px ;
+    transform : rotate( 69deg ) ;
+}
+.button__drow2::before{
+    bottom : 0 ;
+    left : 0 ;
+    width : 0 ;
+    height : 32px ;
+    border-radius : 16px ;
+    transform-origin : 16px 16px ;
+    transform : rotate( -146deg ) ;
+}
+.button__drow2::after{
+    bottom : 26px ;
+    left : -40px ;
+    width : 0 ;
+    height : 32px ;
+    border-radius : 16px ;
+    transform-origin : 16px 16px ;
+    transform : rotate( -262deg ) ;
+}
+.button__drow1,
+.button__drow1::before,
+.button__drow1::after,
+.button__drow2,
+.button__drow2::before,
+.button__drow2::after{
+    background : var( --back_color ) ;
+}
+.button:hover .button__drow1{
+    animation : drow1 ease-in .06s ;
+    animation-fill-mode : forwards ;
+}
+.button:hover .button__drow1::before{
+    animation : drow2 linear .08s .06s ;
+    animation-fill-mode : forwards ;
+}
+.button:hover .button__drow1::after{
+    animation : drow3 linear .03s .14s ;
+    animation-fill-mode : forwards ;
+}
+.button:hover .button__drow2{
+    animation : drow4 linear .06s .2s ;
+    animation-fill-mode : forwards ;
+}
+.button:hover .button__drow2::before{
+    animation : drow3 linear .03s .26s ;
+    animation-fill-mode : forwards ;
+}
+.button:hover .button__drow2::after{
+    animation : drow5 linear .06s .32s ;
+    animation-fill-mode : forwards ;
+}
+@keyframes drow1{
+    0%   { height : 0 ; }
+    100% { height : 100px ; }
+}
+@keyframes drow2{
+    0%   { width : 0 ; opacity : 0 ;}
+    10%  { opacity : 0 ;}
+    11%  { opacity : 1 ;}
+    100% { width : 120px ; }
+}
+@keyframes drow3{
+    0%   { width : 0 ; }
+    100% { width : 80px ; }
+}
+@keyframes drow4{
+    0%   { height : 0 ; }
+    100% { height : 120px ; }
+}
+@keyframes drow5{
+    0%   { width : 0 ; }
+    100% { width : 124px ; }
+}
+
+.container{
+    width : 100% ;
+    height : 300px ;
+    display : flex ;
+    flex-direction : column ;
+    justify-content : center ;
+    align-items : center ;
+}
+.button:not(:last-child){
+    margin-bottom : 64px ;
+}
+
+* {
+    box-sizing: border-box;
+}
+
+:root {
+    --lerp-0: 1;
+    --lerp-1: 0.5787037;
+    --lerp-2: 0.2962963;
+    --lerp-3: 0.125;
+    --lerp-4: 0.037037;
+    --lerp-5: 0.0046296;
+    --lerp-6: 0;
+}
+
+a {
+    outline-offset: 4px;
+}
+
+
+.wrapper {
+    display: flex;
+    flex-direction: column;
+}
+
+.main-content {
+    flex: 1;
+    padding: 20px;
+    text-align: center;
+}
+
+footer {
+    background-color: #f8f9fa;
+    text-align: center;
+    padding: 20px 0;
+    width: 100%;
+    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
+}
+
+footer .container {
+    max-width: 1200px;
+    margin: 0 auto;
+}
+
+.imgFooter .col-lg-2 {
+    padding: 5px;
+}
+
+.imgFooter img {
+    width: 100%;
+    height: 16vh;
+    border-radius: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.imgFooter img:hover {
+    transform: scale(1.1);
+}
+
+.footerIcons {
+    margin-top: 10px;
+}
+
+.social-icon {
+    display: inline-block;
+    font-size: 18px;
+    width: 40px;
+    height: 40px;
+    line-height: 40px;
+    text-align: center;
+    border-radius: 50%;
+    color: white;
+    margin: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.social-icon:hover {
+    transform: scale(1.1);
+}
+
+footer .text-center {
+    font-size: 14px;
+    color: #555;
+}
+
+footer .text-center a {
+    text-decoration: none;
+    color: #007bff;
+}
+
+footer .text-center a:hover {
+    text-decoration: underline;
+}
+
+.w-100{
+    height: 17vh;
+}
+
+.text-blk {
+    padding-top: 0px;
+    padding-right: 0px;
+    padding-bottom: 0px;
+    padding-left: 0px;
+    line-height: 20px;
+    font-size: 14px;
+    margin-top: 0px;
+    margin-right: 0px;
+    margin-bottom: 40px;
+    margin-left: 0px;
+}
+
+.responsive-container-block {
+    min-height: 75px;
+    height: fit-content;
+    width: 100%;
+    padding-top: 10px;
+    padding-right: 10px;
+    padding-bottom: 10px;
+    padding-left: 10px;
+    display: flex;
+    flex-wrap: wrap;
+    margin-right: auto;
+    margin-bottom: 0px;
+    margin-left: auto;
+    justify-content: flex-start;
+    margin-top: -21vh;
+}
+
+.responsive-container-block.bigContainer {
+    background-image: initial;
+    background-position-x: initial;
+    background-position-y: initial;
+    background-size: initial;
+    background-repeat-x: initial;
+    background-repeat-y: initial;
+    background-attachment: initial;
+    background-origin: initial;
+    background-clip: initial;
+    padding-top: 10px;
+    padding-right: 20px;
+    padding-bottom: 10px;
+    padding-left: 20px;
+    margin: 0 0 0 0;
+}
+
+.responsive-container-block.Container {
+    max-width: 1320px;
+    align-items: center;
+    justify-content: center;
+    margin-top: 80px;
+    margin-right: auto;
+    margin-bottom: 80px;
+    margin-left: auto;
+    padding-top: 10px;
+    padding-right: 0px;
+    padding-bottom: 10px;
+    padding-left: 0px;
+}
+
+.responsive-container-block.leftSide {
+    width: auto;
+    align-items: flex-start;
+    padding-top: 10px;
+    padding-right: 0px;
+    padding-bottom: 10px;
+    padding-left: 0px;
+    flex-direction: column;
+    position: static;
+    margin-top: 0px;
+    margin-right: auto;
+    margin-bottom: 0px;
+    margin-left: auto;
+    max-width: 300px;
+}
+
+.text-blk.heading {
+    font-size: 40px;
+    line-height: 64px;
+    font-weight: 900;
+    color: #33b298;
+    margin-top: 0px;
+    margin-right: 0px;
+    margin-bottom: 40px;
+    margin-left: 0px;
+}
+
+.text-blk.btn {
+    color: rgb(0, 178, 235);
+    background-image: initial;
+    background-position-x: initial;
+    background-position-y: initial;
+    background-size: initial;
+    background-repeat-x: initial;
+    background-repeat-y: initial;
+    background-attachment: initial;
+    background-origin: initial;
+    background-clip: initial;
+    background-color: rgb(255, 255, 255);
+    box-shadow: rgba(160, 121, 0, 0.2) 0px 12px 35px;
+    border-top-left-radius: 100px;
+    border-top-right-radius: 100px;
+    border-bottom-right-radius: 100px;
+    border-bottom-left-radius: 100px;
+    padding-top: 20px;
+    padding-right: 50px;
+    padding-bottom: 20px;
+    padding-left: 50px;
+    cursor: pointer;
+}
+
+.responsive-container-block.rightSide {
+    width: 675px;
+    position: relative;
+    padding-top: 0px;
+    padding-right: 0px;
+    padding-bottom: 0px;
+    padding-left: 0px;
+    display: flex;
+    height: 700px;
+    min-height: auto;
+}
+
+.number1img {
+    margin-top: 39%;
+    margin-right: 80%;
+    margin-bottom: 29%;
+    margin-left: 0px;
+    height: 32%;
+    width: 20%;
+    position: absolute;
+}
+
+.number2img {
+    margin-top: 19%;
+    margin-right: 42%;
+    margin-bottom: 42%;
+    margin-left: 23%;
+    width: 35%;
+    height: 40%;
+    position: absolute;
+}
+
+.number3img {
+    width: 15%;
+    height: 19%;
+    position: absolute;
+    margin-top: 62%;
+    margin-right: 64%;
+    margin-bottom: 30%;
+    margin-left: 23%;
+}
+
+.number4vid {
+    width: 35%;
+    height: 42%;
+    position: absolute;
+    margin-top: 62%;
+    margin-right: 27%;
+    margin-bottom: 0px;
+    margin-left: 39%;
+}
+
+.number5img {
+    position: absolute;
+    width: 13%;
+    height: 21.7%;
+    margin-top: 38%;
+    margin-right: 27%;
+    margin-bottom: 41%;
+    margin-left: 60%;
+}
+
+.number6img {
+    position: absolute;
+    margin-top: 0px;
+    margin-right: 3%;
+    margin-bottom: 67%;
+    margin-left: 62%;
+    width: 35%;
+    height: 35%;
+}
+
+.number7img {
+    position: absolute;
+    width: 30%;
+    margin-top: 40%;
+    margin-right: 0px;
+    margin-bottom: 18%;
+    margin-left: 75%;
+    height: 44%;
+}
+
+.text-blk.subHeading {
+    font-size: 14px;
+    line-height: 25px;
+}
+
+@media (max-width: 1024px) {
+    .responsive-container-block.Container {
+        flex-direction: column-reverse;
+    }
+
+    .text-blk.heading {
+        text-align: center;
+        max-width: 370px;
+    }
+
+    .text-blk.subHeading {
+        text-align: center;
+    }
+
+    .responsive-container-block.leftSide {
+        align-items: center;
+        max-width: 480px;
+    }
+
+    .responsive-container-block.rightSide {
+        margin-top: 0px;
+        margin-right: auto;
+        margin-bottom: 100px;
+        margin-left: auto;
+    }
+
+    .responsive-container-block.rightSide {
+        margin: 0 auto 70px auto;
+    }
+}
+
+@media (max-width: 768px) {
+    .responsive-container-block.rightSide {
+        width: 450px;
+        height: 450px;
+    }
+
+    .responsive-container-block.leftSide {
+        max-width: 450px;
+    }
+}
+
+@media (max-width: 500px) {
+    .number1img {
+        display: none;
+    }
+
+    .number2img {
+        display: none;
+    }
+
+    .number3img {
+        display: none;
+    }
+
+    .number5img {
+        display: none;
+    }
+
+    .number6img {
+        display: none;
+    }
+
+    .number7img {
+        display: none;
+    }
+
+    .responsive-container-block.rightSide {
+        width: 100%;
+        height: 250px;
+        margin-top: 0px;
+        margin-right: 0px;
+        margin-bottom: 100px;
+        margin-left: 0px;
+    }
+
+    .number4vid {
+        position: static;
+        margin-top: 0px;
+        margin-right: auto;
+        margin-bottom: 0px;
+        margin-left: auto;
+        width: 100%;
+        height: 100%;
+    }
+
+    .text-blk.heading {
+        font-size: 25px;
+        line-height: 40px;
+        max-width: 370px;
+        width: auto;
+    }
+
+    .text-blk.subHeading {
+        font-size: 14px;
+        line-height: 25px;
+    }
+
+    .responsive-container-block.leftSide {
+        width: 100%;
+    }
+}
+.titleCircle {
+    color: #33b298;
+    font-family: sans-serif;
+}
+
+.container p-4 pb-0{
+    display: inline !important;
+}
+
Index: public/CSSs/listDest.css
===================================================================
--- public/CSSs/listDest.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ public/CSSs/listDest.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,260 @@
+* {
+    font-family: sans-serif;
+}
+
+.navbar {
+    background-color: #00000026;
+    position: absolute !important;
+    width: 100%;
+    z-index: 1000;
+    padding: 10px 20px;
+    position: relative;
+    display: flex;
+    align-items: center;
+    color: whitesmoke;
+}
+
+.logo {
+    height: 73px;
+}
+.navbar {
+    background-color: #00000026;
+    position: fixed;
+    width: 100%;
+    z-index: 1000;
+    padding: 10px 20px;
+    display: flex;
+    align-items: center;
+    color: whitesmoke;
+}
+
+.navbar-nav {
+    margin-left: auto;
+}
+
+.navbar-brand, .nav-link, .navbar-dark, .navbar-nav  {
+    font-size: x-large;
+    color: whitesmoke;
+    font-family: sans-serif;
+}
+
+.nav-link {
+    transition: color 0.3s, text-decoration 0.3s;
+}
+
+.nav-link:hover {
+    border-bottom: 2px solid #33b298;
+    padding-bottom: 2px;
+}
+
+footer {
+    background-color: #f8f9fa;
+    text-align: center;
+    padding: 20px 0;
+    width: 100%;
+    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
+}
+
+footer .container {
+    max-width: 1200px;
+    margin: 0 auto;
+}
+
+.imgFooter .col-lg-2 {
+    padding: 5px;
+}
+
+.imgFooter img {
+    width: 100%;
+    height: 16vh;
+    border-radius: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.imgFooter img:hover {
+    transform: scale(1.1);
+}
+
+.footerIcons {
+    margin-top: 10px;
+}
+
+.social-icon {
+    display: inline-block;
+    font-size: 18px;
+    width: 40px;
+    height: 40px;
+    line-height: 40px;
+    text-align: center;
+    border-radius: 50%;
+    color: white;
+    margin: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.social-icon:hover {
+    transform: scale(1.1);
+}
+
+footer .text-center {
+    font-size: 14px;
+    color: #555;
+}
+
+footer .text-center a {
+    text-decoration: none;
+    color: rgba(239, 233, 233, 0.67);
+}
+
+footer .text-center a:hover {
+    text-decoration: underline;
+}
+
+article {
+    --img-scale: 1.001;
+    --title-color: black;
+    --link-icon-translate: -20px;
+    --link-icon-opacity: 0;
+    position: relative;
+    border-radius: 16px;
+    box-shadow: none;
+    background: #fff;
+    transform-origin: center;
+    transition: all 0.4s ease-in-out;
+    overflow: hidden;
+}
+
+article a::after {
+    position: absolute;
+    inset-block: 0;
+    inset-inline: 0;
+    cursor: pointer;
+    content: "";
+}
+
+article h2 {
+    margin: 0 0 18px 0;
+    font-family: "Bebas Neue", cursive;
+    font-size: 1.9rem;
+    letter-spacing: 0.06em;
+    color: var(--title-color);
+    transition: color 0.3s ease-out;
+}
+
+figure {
+    margin: 0;
+    padding: 0;
+    aspect-ratio: 16 / 9;
+    overflow: hidden;
+}
+.articles{
+    padding-top: 5vh;
+    padding-bottom: 5vh;
+}
+
+article img {
+    max-width: 100%;
+    transform-origin: center;
+    transform: scale(var(--img-scale));
+    transition: transform 0.4s ease-in-out;
+}
+
+.article-body {
+    padding: 24px;
+}
+
+article a {
+    display: inline-flex;
+    align-items: center;
+    text-decoration: none;
+    color: #28666e;
+}
+
+article a:focus {
+    outline: 1px dotted #28666e;
+}
+
+article a .icon {
+    min-width: 24px;
+    width: 24px;
+    height: 24px;
+    margin-left: 5px;
+    transform: translateX(var(--link-icon-translate));
+    opacity: var(--link-icon-opacity);
+    transition: all 0.3s;
+}
+
+/* using the has() relational pseudo selector to update our custom properties */
+article:has(:hover, :focus) {
+    --img-scale: 1.1;
+    --title-color: #28666e;
+    --link-icon-translate: 0;
+    --link-icon-opacity: 1;
+    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
+}
+
+
+/************************
+Generic layout (demo looks)
+**************************/
+
+*,
+*::before,
+*::after {
+    box-sizing: border-box;
+}
+
+.articles {
+    display: grid;
+    max-width: 1200px;
+    margin-inline: auto;
+    padding-inline: 24px;
+    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
+    gap: 24px;
+}
+
+@media screen and (max-width: 960px) {
+    article {
+        container: card/inline-size;
+    }
+    .article-body p {
+        display: none;
+    }
+}
+
+@container card (min-width: 380px) {
+    .article-wrapper {
+        display: grid;
+        grid-template-columns: 100px 1fr;
+        gap: 16px;
+    }
+    .article-body {
+        padding-left: 0;
+    }
+    figure {
+        width: 100%;
+        height: 100%;
+        overflow: hidden;
+    }
+    figure img {
+        height: 100%;
+        aspect-ratio: 1;
+        object-fit: cover;
+    }
+}
+
+.sr-only:not(:focus):not(:active) {
+    clip: rect(0 0 0 0);
+    clip-path: inset(50%);
+    height: 1px;
+    overflow: hidden;
+    position: absolute;
+    white-space: nowrap;
+    width: 1px;
+}
+
+#title{
+    padding-top: 16vh;
+    text-align: center;
+    color: #33b298;
+}
Index: public/CSSs/login.css
===================================================================
--- public/CSSs/login.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ public/CSSs/login.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,181 @@
+* {
+    font-family: sans-serif;
+}
+
+.navbar {
+    background-color: #00000026;
+    position: absolute !important;
+    width: 100%;
+    z-index: 1000;
+    padding: 10px 20px;
+    position: relative;
+    display: flex;
+    align-items: center;
+    color: whitesmoke;
+}
+
+.logo {
+    height: 73px;
+}
+
+.navbar-nav {
+    margin-left: auto;
+}
+
+.navbar-brand, .nav-link, .navbar-dark, .navbar-nav  {
+    font-size: x-large;
+    color: whitesmoke;
+    font-family: sans-serif;
+}
+
+.nav-link {
+    transition: color 0.3s, text-decoration 0.3s;
+}
+
+.nav-link:hover {
+    border-bottom: 2px solid #33b298;
+    padding-bottom: 2px;
+}
+
+.carousel-item {
+    position: relative;
+    height: 100vh;
+    width: 100vw;
+    background-size: cover;
+    background-position: center;
+}
+
+.carousel-inner img {
+    width: 100%;
+    height: 100vh;
+    object-fit: cover;
+    object-position: 80% 35%;
+    opacity: 0.5;
+    filter: brightness(57%);
+    transition: opacity 0.5s ease-in-out;
+    /*filter: blur(5px);*/
+}
+
+.carousel-control-prev-icon{
+    margin-left: -115px;
+    top: 80vh;
+}
+
+.carousel-control-next-icon{
+    top: 80vh;
+    margin-right: -110px;
+}
+
+.wrapper {
+    position: absolute;
+    top: 50%;
+    left: 50%;
+    transform: translate(-50%, -50%);
+    z-index: 10;
+    width: 30%;
+}
+h2 {
+    text-align: center;
+}
+.form-group {
+    margin-bottom: 15px;
+    border-bottom: 1px solid #33b298;
+}
+.form-control {
+    width: 100%;
+    padding: 10px;
+    border: none !important;
+    border-bottom: 2px solid #33b298;
+    outline: none;
+}
+
+.form-container{
+    padding: 20px;
+}
+
+.form-container h2{
+    color: white;
+}
+
+.btn {
+    width: 100%;
+    background-color: white !important;
+    border: none;
+    padding: 10px;
+    border-radius: 5px;
+    cursor: pointer;
+}
+
+.btn:hover {
+    background-color: #33b298 !important;
+    color: white;
+}
+
+.main-content {
+    flex: 1;
+    padding-top: 20vh;
+    text-align: center;
+}
+
+footer {
+    background-color: #f8f9fa;
+    text-align: center;
+    padding: 20px 0;
+    width: 100%;
+    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
+}
+
+footer .container {
+    max-width: 1200px;
+    margin: 0 auto;
+}
+
+.imgFooter .col-lg-2 {
+    padding: 5px;
+}
+
+.imgFooter img {
+    width: 100%;
+    height: 16vh;
+    border-radius: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.imgFooter img:hover {
+    transform: scale(1.1);
+}
+
+.footerIcons {
+    margin-top: 10px;
+}
+
+.social-icon {
+    display: inline-block;
+    font-size: 18px;
+    width: 40px;
+    height: 40px;
+    line-height: 40px;
+    text-align: center;
+    border-radius: 50%;
+    color: white;
+    margin: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.social-icon:hover {
+    transform: scale(1.1);
+}
+
+footer .text-center {
+    font-size: 14px;
+    color: #555;
+}
+
+footer .text-center a {
+    text-decoration: none;
+    color: rgba(239, 233, 233, 0.67);
+}
+
+footer .text-center a:hover {
+    text-decoration: underline;
+}
Index: public/CSSs/search.css
===================================================================
--- public/CSSs/search.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ public/CSSs/search.css	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,181 @@
+* {
+    font-family: sans-serif;
+}
+
+.navbar {
+    background-color: #00000026;
+    position: absolute !important;
+    width: 100%;
+    z-index: 1000;
+    padding: 10px 20px;
+    position: relative;
+    display: flex;
+    align-items: center;
+    color: whitesmoke;
+}
+
+.logo {
+    height: 73px;
+}
+
+.navbar-nav {
+    margin-left: auto;
+}
+
+.navbar-brand, .nav-link, .navbar-dark, .navbar-nav  {
+    font-size: x-large;
+    color: whitesmoke;
+    font-family: sans-serif;
+}
+
+.nav-link {
+    transition: color 0.3s, text-decoration 0.3s;
+}
+
+.nav-link:hover {
+    border-bottom: 2px solid #33b298;
+    padding-bottom: 2px;
+}
+
+.carousel-item {
+    position: relative;
+    height: 100vh;
+    width: 100vw;
+    background-size: cover;
+    background-position: center;
+}
+
+.carousel-inner img {
+    width: 100%;
+    height: 100vh;
+    object-fit: cover;
+    object-position: 80% 35%;
+    opacity: 0.5;
+    filter: brightness(57%);
+    transition: opacity 0.5s ease-in-out;
+    /*filter: blur(5px);*/
+}
+
+.carousel-control-prev-icon{
+    margin-left: -115px;
+    top: 80vh;
+}
+
+.carousel-control-next-icon{
+    top: 80vh;
+    margin-right: -110px;
+}
+
+.wrapper {
+    position: absolute;
+    top: 50%;
+    left: 50%;
+    transform: translate(-50%, -50%);
+    z-index: 10;
+    width: 30%;
+}
+h2 {
+    text-align: center;
+}
+.form-group {
+    margin-bottom: 15px;
+    border-bottom: 1px solid #33b298;
+}
+.form-control {
+    width: 100%;
+    padding: 10px;
+    border: none !important;
+    border-bottom: 2px solid #33b298;
+    outline: none;
+}
+
+.form-container{
+    padding: 20px;
+}
+
+.form-container h2{
+    color: white;
+}
+
+.btn {
+    width: 100%;
+    background-color: white !important;
+    border: none;
+    padding: 10px;
+    border-radius: 5px;
+    cursor: pointer;
+}
+
+.btn:hover {
+    background-color: #33b298 !important;
+    color: white;
+}
+
+.main-content {
+    flex: 1;
+    padding-top: 20vh;
+    text-align: center;
+}
+
+footer {
+    background-color: #f8f9fa;
+    text-align: center;
+    padding: 20px 0;
+    width: 100%;
+    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
+}
+
+footer .container {
+    max-width: 1200px;
+    margin: 0 auto;
+}
+
+.imgFooter .col-lg-2 {
+    padding: 5px;
+}
+
+.imgFooter img {
+    width: 100%;
+    height: 16vh;
+    border-radius: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.imgFooter img:hover {
+    transform: scale(1.1);
+}
+
+.footerIcons {
+    margin-top: 10px;
+}
+
+.social-icon {
+    display: inline-block;
+    font-size: 18px;
+    width: 40px;
+    height: 40px;
+    line-height: 40px;
+    text-align: center;
+    border-radius: 50%;
+    color: white;
+    margin: 5px;
+    transition: transform 0.3s ease-in-out;
+}
+
+.social-icon:hover {
+    transform: scale(1.1);
+}
+
+footer .text-center {
+    font-size: 14px;
+    color: #555;
+}
+
+footer .text-center a {
+    text-decoration: none;
+    color: rgba(239, 233, 233, 0.67);
+}
+
+footer .text-center a:hover {
+    text-decoration: underline;
+}
Index: resources/views/destinations/index.blade.php
===================================================================
--- resources/views/destinations/index.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/destinations/index.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,92 @@
+<!DOCTYPE html>
+<html lang="mk">
+<head>
+    <meta charset="UTF-8">
+    <title>Приказ на дестинации</title>
+    <link rel="stylesheet" href="{{ asset('CSSs/listDest.css') }}">
+    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
+</head>
+<body>
+<nav class="navbar navbar-expand-lg navbar-dark">
+    <img class="logo" src="{{ asset('images/logo.png') }}">
+    <div class="container-fluid">
+        <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#main_nav"  aria-expanded="false" aria-label="Toggle navigation">
+            <span class="navbar-toggler-icon"></span>
+        </button>
+        <div class="collapse navbar-collapse" id="main_nav">
+            <ul class="navbar-nav">
+                <li class="nav-item"><a class="nav-link">ПОЧЕТНА</a></li>
+                <li class="nav-item"><a class="nav-link">ЗА НАС</a></li>
+                <li class="nav-item"><a class="nav-link">КОНТАКТ</a></li>
+            </ul>
+        </div>
+    </div>
+</nav>
+
+<div class="main-content">
+    <h3 id="title">Препорачани дестинации</h3>
+    <section class="articles">
+        @foreach($destinations as $destination)
+            <article>
+                <div class="article-wrapper">
+                    <figure >
+                        <img src="https://t4.ftcdn.net/jpg/00/65/48/25/360_F_65482539_C0ZozE5gUjCafz7Xq98WB4dW6LAhqKfs.jpg" alt="" />
+                    </figure>
+                    <div class="article-body">
+                        <h2>{{ $destination->imelokacija }}</h2>
+                        <p>Тип на локација: {{ $destination->tipovimesta }} </p>
+                        <a href="{{ route('destinations.show', $destination) }}" class="read-more">
+                            Прочитај повеќе
+                            <svg xmlns="http://www.w3.org/2000/svg" class="icon" viewBox="0 0 20 20" fill="currentColor">
+                                <path fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd" />
+                            </svg>
+                        </a>
+                    </div>
+                </div>
+            </article>
+        @endforeach
+    </section>
+</div>
+
+<footer class="bg-body-tertiary text-center">
+    <div class="container p-4 pb-0">
+        <div class="container p-4">
+            <section class="imgFooter">
+                <div class="row">
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f1.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f4.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f3.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f5.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f2.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f6.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                </div>
+            </section>
+        </div>
+
+        <section class="footerIcons">
+            <a class="btn social-icon" style="background-color: #3b5998;" href="#"><i class="fab fa-facebook-f"></i></a>
+            <a class="btn social-icon" style="background-color: #55acee;" href="#"><i class="fab fa-twitter"></i></a>
+            <a class="btn social-icon" style="background-color: #dd4b39;" href="#"><i class="fab fa-google"></i></a>
+            <a class="btn social-icon" style="background-color: #ac2bac;" href="#"><i class="fab fa-instagram"></i></a>
+            <a class="btn social-icon" style="background-color: #0082ca;" href="#"><i class="fab fa-linkedin-in"></i></a>
+            <a class="btn social-icon" style="background-color: #333333;" href="#"><i class="fab fa-github"></i></a>
+        </section>
+    </div>
+
+    <div class="text-center p-3">© 2025 Copyright</div>
+</footer>
+</body>
+</html>
Index: resources/views/destinations/search.blade.php
===================================================================
--- resources/views/destinations/search.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/destinations/search.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,73 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Пребарување дестинации</title>
+    <link rel="stylesheet" href="{{ asset('CSSs/search.css') }}">
+    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
+    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
+    <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
+</head>
+<body>
+
+<nav class="navbar navbar-expand-lg navbar-dark">
+    <img class="logo" src="{{ asset('images/logo.png') }}" alt="Logo">
+    <div class="container-fluid">
+        <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#main_nav" aria-expanded="false" aria-label="Toggle navigation">
+            <span class="navbar-toggler-icon"></span>
+        </button>
+        <div class="collapse navbar-collapse" id="main_nav">
+            <ul class="navbar-nav">
+                <li class="nav-item"><a class="nav-link" href="#">ПОЧЕТНА</a></li>
+                <li class="nav-item"><a class="nav-link" href="#">ЗА НАС</a></li>
+                <li class="nav-item"><a class="nav-link" href="#">КОНТАКТ</a></li>
+            </ul>
+        </div>
+    </div>
+</nav>
+
+<h2>Резултати од пребарување</h2>
+@if($results->isEmpty())
+    <p>Нема резултати според избраните критериуми.</p>
+@else
+    <ul>
+        @foreach($results as $destination)
+            <li>{{ $destination->name }} - {{ $destination->tipovimesta }} - {{ $destination->preporachanasezona }}</li>
+        @endforeach
+    </ul>
+@endif
+
+<footer class="bg-body-tertiary text-center">
+    <div class="container p-4 pb-0">
+        <div class="container p-4">
+            <section class="imgFooter">
+                <div class="row">
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f1.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f4.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f3.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f5.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f2.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f6.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                </div>
+            </section>
+        </div>
+    </div>
+    <div class="text-center p-3">© 2025 Copyright</div>
+</footer>
+
+</body>
+</html>
Index: resources/views/destinations/show.blade.php
===================================================================
--- resources/views/destinations/show.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/destinations/show.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,138 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Детали за дестинација</title>
+    <link rel="stylesheet" href="{{ asset('CSSs/detailsDest.css') }}">
+    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
+    <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
+</head>
+<body>
+<nav class="navbar navbar-expand-lg navbar-dark">
+    <img class="logo" src="{{ asset('images/logo.png') }}">
+    <div class="container-fluid">
+        <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#main_nav"  aria-expanded="false" aria-label="Toggle navigation">
+            <span class="navbar-toggler-icon"></span>
+        </button>
+        <div class="collapse navbar-collapse" id="main_nav">
+            <ul class="navbar-nav">
+                <li class="nav-item"><a class="nav-link">ПОЧЕТНА</a></li>
+                <li class="nav-item"><a class="nav-link">ЗА НАС</a></li>
+                <li class="nav-item"><a class="nav-link">КОНТАКТ</a></li>
+            </ul>
+        </div>
+    </div>
+</nav>
+
+<div class="cards">
+    <h1>{{ $destination->imelokacija }}</h1>
+    <p>Краток опис за локацијата <br> {{ $destination->imelokacija }} се наоѓа во {{ $destination->drzhava }}
+        со геоографски координати {{ $destination->lat }} и {{ $destination->lon }}.
+        Тип на место:  {{ $destination->tipovimesta }}. {{ $destination->opislokacija }}, додека пак автентично место
+        или пак место што доколку го посетите, а не отидете таму ќе зажалите е токму {{ $destination->ime }}.
+        {{ $destination->opis }}  Популарност на местото е оценетта со {{ $destination->popularnost }}.
+        Вообичаена препорачана сезона за посета: {{ $destination->preporachanasezona }}
+        и просечните температури се {{ $destination->prosechnatemp }} степени.
+    </p>
+
+    <div class="container bootstrap snippets bootdeys">
+        <div class="row">
+            <div class="col-md-4 col-sm-6 content-card">
+                <div class="card-big-shadow">
+                    <div class="card card-just-text" data-background="color" data-color="blue" data-radius="none">
+                        <div class="content">
+                            <h6 class="category">Настани</h6>
+                        </div>
+                    </div>
+                </div>
+            </div>
+
+            <div class="col-md-4 col-sm-6 content-card">
+                <div class="card-big-shadow">
+                    <div class="card card-just-text" data-background="color" data-color="green" data-radius="none">
+                        <div class="content">
+                            <h6 class="category">Активности</h6>
+                        </div>
+                    </div>
+                </div>
+            </div>
+
+            <div class="col-md-4 col-sm-6 content-card">
+                <div class="card-big-shadow">
+                    <div class="card card-just-text" data-background="color" data-color="purple" data-radius="none">
+                        <div class="content">
+                            <h6 class="category">Пакети</h6>
+                        </div>
+                    </div>
+                </div>
+            </div>
+        </div>
+    </div>
+
+    <span class="icon-container">
+    <i class="fa-solid fa-cloud"></i>
+    <i class="fa-solid fa-sun"></i>
+  </span>
+
+    <button type="submit" id="rez">
+        Резервирај
+    </button>
+</div>
+
+<div class="gallery">
+    <img src="https://picsum.photos/id/1040/300/300" alt="a house on a mountain">
+    <img src="https://picsum.photos/id/106/300/300" alt="sime pink flowers">
+    <img src="https://picsum.photos/id/136/300/300" alt="big rocks with some trees">
+    <img src="https://picsum.photos/id/1039/300/300" alt="a waterfall, a lot of tree and a great view from the sky">
+    <img src="https://picsum.photos/id/110/300/300" alt="a cool landscape">
+    <img src="https://picsum.photos/id/1047/300/300" alt="inside a town between two big buildings">
+    <img src="https://picsum.photos/id/1057/300/300" alt="a great view of the sea above the mountain">
+</div>
+
+
+<footer class="bg-body-tertiary text-center">
+    <div class="container p-4 pb-0">
+        <div class="container p-4">
+            <section class="imgFooter">
+                <div class="row">
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f1.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f4.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f3.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f5.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f2.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f6.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                </div>
+            </section>
+        </div>
+
+        <section class="footerIcons">
+            <a class="btn social-icon" style="background-color: #3b5998;" href="#"><i class="fab fa-facebook-f"></i></a>
+            <a class="btn social-icon" style="background-color: #55acee;" href="#"><i class="fab fa-twitter"></i></a>
+            <a class="btn social-icon" style="background-color: #dd4b39;" href="#"><i class="fab fa-google"></i></a>
+            <a class="btn social-icon" style="background-color: #ac2bac;" href="#"><i class="fab fa-instagram"></i></a>
+            <a class="btn social-icon" style="background-color: #0082ca;" href="#"><i class="fab fa-linkedin-in"></i></a>
+            <a class="btn social-icon" style="background-color: #333333;" href="#"><i class="fab fa-github"></i></a>
+        </section>
+    </div>
+
+    <div class="text-center p-3">© 2025 Copyright</div>
+</footer>
+
+<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
+<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
+</body>
+</html>
Index: resources/views/index.blade.php
===================================================================
--- resources/views/index.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/index.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,216 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>TravelSage</title>
+    <link rel="stylesheet" href="{{ asset('CSSs/homeStyle.css') }}">
+    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
+          integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
+    <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
+
+    <style>
+        .footerIcons {
+            display: grid;
+            grid-template-columns: repeat(3, 1fr);
+            gap: 10px;
+            justify-items: center;
+        }
+        html {
+            scroll-behavior: smooth;
+        }
+    </style>
+</head>
+<body>
+<nav class="navbar navbar-expand-lg navbar-dark">
+    <img class="logo" src="{{ asset('images/logo.png') }}">
+    <div class="container-fluid">
+        <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#main_nav"
+                aria-expanded="false" aria-label="Toggle navigation">
+            <span class="navbar-toggler-icon"></span>
+        </button>
+        <div class="collapse navbar-collapse" id="main_nav">
+            <ul class="navbar-nav">
+                <li class="nav-item"><a class="nav-link" href="{{ url('/') }}">ПОЧЕТНА</a></li>
+                <li class="nav-item"><a href="#za-nas" class="nav-link">ЗА НАС</a></li>
+                <li class="nav-item"><a href="#kontakt" class="nav-link">КОНТАКТ</a></li>
+            </ul>
+        </div>
+    </div>
+</nav>
+
+<div id="carouselExampleInterval" class="carousel slide" data-bs-ride="carousel" data-bs-interval="1500">
+    <div class="carousel-inner">
+        <div class="carousel-item active" data-bs-interval="1500">
+            <img src="{{ asset('images/5.jpg') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/6.webp') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/4.jpg') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/1.webp') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/2.webp') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/3.jpg') }}" class="d-block w-100" alt="...">
+        </div>
+    </div>
+    <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleInterval" data-bs-slide="prev">
+        <span class="carousel-control-prev-icon" aria-hidden="true"></span>
+        <span class="visually-hidden">Previous</span>
+    </button>
+    <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleInterval" data-bs-slide="next">
+        <span class="carousel-control-next-icon" aria-hidden="true"></span>
+        <span class="visually-hidden">Next</span>
+    </button>
+</div>
+
+<ol>
+    <h1 class="titleCircle">Креирајте го вашето идеално патување</h1>
+    <li>
+        <div class="icon"><i class="fa-solid fa-user-plus"></i></div>
+        <div class="descr">Започнете ја вашата авантура со креирање на персонализиран профил.</div>
+    </li>
+    <li>
+        <div class="icon"><i class="fa-regular fa-heart"></i></div>
+        <div class="descr">Споделете ги вашите преференци.</div>
+    </li>
+    <li>
+        <div class="icon"><i class="fa-solid fa-plane"></i></div>
+        <div class="descr">Истражете дестинации кои одговараат на вашите интереси.</div>
+    </li>
+    <li>
+        <div class="icon"><i class="fa-regular fa-comments"></i></div>
+        <div class="descr">Дознајте од искуствата на други патници за да донесете правилен избор.</div>
+    </li>
+    <li>
+        <div class="icon"><i class="fa-solid fa-hand-holding-heart"></i></div>
+        <div class="descr">Дозволете да ви помогнеме при одлуката за патување што најмногу ви одговара.</div>
+    </li>
+    <li>
+        <div class="icon"><i class="fa-solid fa-rocket"></i></div>
+        <div class="descr">Резервирајте и започнете со истражување на нови хоризонти.</div>
+    </li>
+</ol>
+
+<div class="container">
+    <a href="{{ route('login') }}" class="button type--C">
+        <div class="button__line"></div>
+        <div class="button__line"></div>
+        <span class="button__text">НАЈАВА</span>
+        <div class="button__drow1"></div>
+        <div class="button__drow2"></div>
+    </a>
+</div>
+
+
+<div id="za-nas" class="responsive-container-block bigContainer">
+    <div class="responsive-container-block Container">
+        <div class="responsive-container-block leftSide">
+            <p class="text-blk heading">Вашиот персонализиран водич за совршени патувања</p>
+            <p class="text-blk subHeading">
+                TravelSage не е само платформа – тоа е вашиот личен патоказ кон совршеното патување!
+                Со комбинација на интуитивни препораки, реални искуства и паметна анализа на временските услови, го
+                претвораме планирањето на
+                авантурите во незаборавно доживување. Без разлика дали барате егзотични плажи, урбани авантури или
+                скриени природни чуда,
+                ние ќе ви помогнеме да го најдете вистинското место во вистинскиот момент.<br>
+                Истражувај. Патувај. Доживеј.
+            </p>
+        </div>
+        <div class="responsive-container-block rightSide">
+            <img class="number1img" src="{{ asset('images/img5.jpg') }}">
+            <img class="number2img" src="{{ asset('images/img7.jpg') }}">
+            <img class="number3img" src="{{ asset('images/img2.jpg') }}">
+            <img class="number5img" src="{{ asset('images/img6.jpg') }}">
+            <img class="number4vid" src="{{ asset('images/img4.jpg') }}">
+            <img class="number7img" src="{{ asset('images/img1.jpg') }}">
+            <img class="number6img" src="{{ asset('images/img3.jpg') }}">
+        </div>
+    </div>
+</div>
+
+<div class="wrapper">
+    <div class="main-content">
+        <div>
+            <p><i class="fa-light fa-person-walking-luggage fa-xl" style="color: #33b298;"></i></p>
+        </div>
+    </div>
+</div>
+
+<footer id="kontakt" class="bg-body-tertiary text-center">
+    <div class="container p-4 pb-0">
+        <div class="container p-4">
+            <section class="imgFooter">
+                <div class="row">
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f1.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f4.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f3.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f5.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f2.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f6.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                </div>
+            </section>
+        </div>
+
+        <div class="row">
+            <div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
+                <h6 class="text-uppercase mb-4 font-weight-bold">
+                    TravelSage
+                </h6>
+                <p>
+                    Иновативен концепт за паметен избор на локација за патување.
+                </p>
+            </div>
+
+            <div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
+                <h6 class="text-uppercase mb-4 font-weight-bold">Контакт</h6>
+                <p><i class="fas fa-home mr-3"></i> Скопје, Р. С. Македонија</p>
+                <p><i class="fas fa-envelope mr-3"></i> travelSage@gmail.com</p>
+                <p><i class="fas fa-phone mr-3"></i> + 389 77 888 888</p>
+            </div>
+
+            <div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
+                <h6 class="text-uppercase mb-4 font-weight-bold">Заследете не</h6>
+                <section class="footerIcons">
+                    <a class="btn social-icon" style="background-color: #3b5998;" href="#"><i
+                            class="fab fa-facebook-f"></i></a>
+                    <a class="btn social-icon" style="background-color: #55acee;" href="#"><i
+                            class="fab fa-twitter"></i></a>
+                    <a class="btn social-icon" style="background-color: #dd4b39;" href="#"><i
+                            class="fab fa-google"></i></a>
+                    <a class="btn social-icon" style="background-color: #ac2bac;" href="#"><i
+                            class="fab fa-instagram"></i></a>
+                    <a class="btn social-icon" style="background-color: #0082ca;" href="#"><i
+                            class="fab fa-linkedin-in"></i></a>
+                    <a class="btn social-icon" style="background-color: #333333;" href="#"><i
+                            class="fab fa-github"></i></a>
+                </section>
+            </div>
+        </div>
+    </div>
+</footer>
+
+<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"></script>
+<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"></script>
+</body>
+</html>
+
Index: resources/views/login.blade.php
===================================================================
--- resources/views/login.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/login.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,174 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Најава на корисник</title>
+    <link rel="stylesheet" href="{{ asset('CSSs/login.css') }}">
+    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
+          integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
+    <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
+</head>
+<body>
+<nav class="navbar navbar-expand-lg navbar-dark">
+    <img class="logo" src="{{ asset('images/logo.png') }}">
+    <div class="container-fluid">
+        <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#main_nav"
+                aria-expanded="false" aria-label="Toggle navigation">
+            <span class="navbar-toggler-icon"></span>
+        </button>
+        <div class="collapse navbar-collapse" id="main_nav">
+            <ul class="navbar-nav">
+                <li class="nav-item"><a class="nav-link" href="{{ url('/') }}" class="nav-link">ПОЧЕТНА</a>
+                </li>
+                <li class="nav-item"><a href="#za-nas" class="nav-link">ЗА НАС</a></li>
+                <li class="nav-item"><a href="#kontakt" class="nav-link">КОНТАКТ</a></li>
+            </ul>
+        </div>
+    </div>
+</nav>
+
+<div id="carouselExampleInterval" class="carousel slide" data-bs-ride="carousel" data-bs-interval="1500">
+    <div class="carousel-inner">
+        <div class="carousel-item active" data-bs-interval="1500">
+            <img src="{{ asset('images/5.jpg') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/6.webp') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/4.jpg') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/1.webp') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/2.webp') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/3.jpg') }}" class="d-block w-100" alt="...">
+        </div>
+    </div>
+    <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleInterval" data-bs-slide="prev">
+        <span class="carousel-control-prev-icon" aria-hidden="true"></span>
+        <span class="visually-hidden">Previous</span>
+    </button>
+    <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleInterval" data-bs-slide="next">
+        <span class="carousel-control-next-icon" aria-hidden="true"></span>
+        <span class="visually-hidden">Next</span>
+    </button>
+</div>
+
+<div class="wrapper">
+    <div class="form-container">
+        <h2>Најави се</h2>
+
+        <form action="{{ route('login') }}" method="POST">
+            @csrf
+            <div class="form-group">
+                <input type="text" name="ime" class="form-control" placeholder="Име" required>
+            </div>
+            <div class="form-group">
+                <input type="text" name="prezime" class="form-control" placeholder="Презиме" required>
+            </div>
+            <div class="form-group">
+                <input type="email" name="eposhta" class="form-control" placeholder="Е-пошта" required>
+            </div>
+            <div class="form-group">
+                <input type="tel" name="telbr" class="form-control" placeholder="Телефонски број" required>
+            </div>
+            <div class="form-group">
+                <input type="password" name="password" class="form-control" placeholder="Лозинка" required>
+            </div>
+            <div class="form-group">
+                <input type="password" name="password_confirmation" class="form-control" placeholder="Потврди лозинка"
+                       required>
+            </div>
+            <div class="form-group">
+                <input type="date" name="datumragjanje" class="form-control" required>
+            </div>
+            <div class="form-group">
+                <select name="iddest" class="form-control" required>
+                    <option value="" disabled selected>Тип корисник</option>
+                    <option value="standard">Стандард</option>
+                    <option value="premium">Премиум</option>
+                </select>
+            </div>
+            <button type="submit" class="btn">Регистрирај се</button>
+        </form>
+    </div>
+</div>
+
+
+<footer id="kontakt" class="bg-body-tertiary text-center">
+    <div class="container p-4 pb-0">
+        <div class="container p-4">
+            <section class="imgFooter">
+                <div class="row">
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f1.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f4.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f3.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f5.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f2.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f6.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                </div>
+            </section>
+        </div>
+
+        <div class="row">
+            <div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
+                <h6 class="text-uppercase mb-4 font-weight-bold">
+                    TravelSage
+                </h6>
+                <p>
+                    Иновативен концепт за паметен избор на локација за патување.
+                </p>
+            </div>
+
+            <div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
+                <h6 class="text-uppercase mb-4 font-weight-bold">Контакт</h6>
+                <p><i class="fas fa-home mr-3"></i> Скопје, Р. С. Македонија</p>
+                <p><i class="fas fa-envelope mr-3"></i> travelSage@gmail.com</p>
+                <p><i class="fas fa-phone mr-3"></i> + 389 77 888 888</p>
+            </div>
+
+            <div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
+                <h6 class="text-uppercase mb-4 font-weight-bold">Заследете не</h6>
+                <section class="footerIcons">
+                    <a class="btn social-icon" style="background-color: #3b5998;" href="#"><i
+                            class="fab fa-facebook-f"></i></a>
+                    <a class="btn social-icon" style="background-color: #55acee;" href="#"><i
+                            class="fab fa-twitter"></i></a>
+                    <a class="btn social-icon" style="background-color: #dd4b39;" href="#"><i
+                            class="fab fa-google"></i></a>
+                    <a class="btn social-icon" style="background-color: #ac2bac;" href="#"><i
+                            class="fab fa-instagram"></i></a>
+                    <a class="btn social-icon" style="background-color: #0082ca;" href="#"><i
+                            class="fab fa-linkedin-in"></i></a>
+                    <a class="btn social-icon" style="background-color: #333333;" href="#"><i
+                            class="fab fa-github"></i></a>
+                </section>
+            </div>
+        </div>
+    </div>
+</footer>
+
+<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
+<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
+        integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
+        crossorigin="anonymous"></script>
+</body>
+</html>
Index: resources/views/preferences.blade.php
===================================================================
--- resources/views/preferences.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/preferences.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,187 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <title>Пребарување дестинации</title>
+    <link rel="stylesheet" href="{{ asset('CSSs/search.css') }}">
+    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
+    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
+          integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
+    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
+    <link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap" rel="stylesheet">
+</head>
+<body>
+@if (session('success'))
+    <div class="alert alert-success">
+        {{ session('success') }}
+    </div>
+@endif
+<nav class="navbar navbar-expand-lg navbar-dark">
+    <img class="logo" src="{{ asset('images/logo.png') }}">
+    <div class="container-fluid">
+        <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#main_nav"
+                aria-expanded="false" aria-label="Toggle navigation">
+            <span class="navbar-toggler-icon"></span>
+        </button>
+        <div class="collapse navbar-collapse" id="main_nav">
+            <ul class="navbar-nav">
+                <li class="nav-item"><a class="nav-link" href="{{ url('/') }}" class="nav-link">ПОЧЕТНА</a>
+                </li>
+                <li class="nav-item"><a href="#za-nas" class="nav-link">ЗА НАС</a></li>
+                <li class="nav-item"><a href="#kontakt" class="nav-link">КОНТАКТ</a></li>
+            </ul>
+        </div>
+    </div>
+</nav>
+
+<div id="carouselExampleInterval" class="carousel slide" data-bs-ride="carousel" data-bs-interval="1500">
+    <div class="carousel-inner">
+        <div class="carousel-item active" data-bs-interval="1500">
+            <img src="{{ asset('images/5.jpg') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/6.webp') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/4.jpg') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/1.webp') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/2.webp') }}" class="d-block w-100" alt="...">
+        </div>
+        <div class="carousel-item" data-bs-interval="1500">
+            <img src="{{ asset('images/3.jpg') }}" class="d-block w-100" alt="...">
+        </div>
+    </div>
+    <button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleInterval" data-bs-slide="prev">
+        <span class="carousel-control-prev-icon" aria-hidden="true"></span>
+        <span class="visually-hidden">Previous</span>
+    </button>
+    <button class="carousel-control-next" type="button" data-bs-target="#carouselExampleInterval" data-bs-slide="next">
+        <span class="carousel-control-next-icon" aria-hidden="true"></span>
+        <span class="visually-hidden">Next</span>
+    </button>
+</div>
+
+
+<div class="wrapper">
+    <div class="form-container">
+        <h2>Пронајдете ја вашата идеална дестинација</h2>
+        <form>
+            <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>
+                </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>
+                </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>
+            </div>
+            <button type="submit" class="btn">Во ред</button>
+        </form>
+    </div>
+</div>
+
+
+<footer id="kontakt" class="bg-body-tertiary text-center">
+    <div class="container p-4 pb-0">
+        <div class="container p-4">
+            <section class="imgFooter">
+                <div class="row">
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f1.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f4.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f3.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f5.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f2.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                    <div class="col-lg-2 col-md-4 col-6 mb-4">
+                        <img src="{{ asset('images/f6.jpg') }}" class="w-100 rounded shadow">
+                    </div>
+                </div>
+            </section>
+        </div>
+
+        <div class="row">
+            <div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
+                <h6 class="text-uppercase mb-4 font-weight-bold">
+                    TravelSage
+                </h6>
+                <p>
+                    Иновативен концепт за паметен избор на локација за патување.
+                </p>
+            </div>
+
+            <div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
+                <h6 class="text-uppercase mb-4 font-weight-bold">Контакт</h6>
+                <p><i class="fas fa-home mr-3"></i> Скопје, Р. С. Македонија</p>
+                <p><i class="fas fa-envelope mr-3"></i> travelSage@gmail.com</p>
+                <p><i class="fas fa-phone mr-3"></i> + 389 77 888 888</p>
+            </div>
+
+            <div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
+                <h6 class="text-uppercase mb-4 font-weight-bold">Заследете не</h6>
+                <section class="footerIcons">
+                    <a class="btn social-icon" style="background-color: #3b5998;" href="#"><i
+                            class="fab fa-facebook-f"></i></a>
+                    <a class="btn social-icon" style="background-color: #55acee;" href="#"><i
+                            class="fab fa-twitter"></i></a>
+                    <a class="btn social-icon" style="background-color: #dd4b39;" href="#"><i
+                            class="fab fa-google"></i></a>
+                    <a class="btn social-icon" style="background-color: #ac2bac;" href="#"><i
+                            class="fab fa-instagram"></i></a>
+                    <a class="btn social-icon" style="background-color: #0082ca;" href="#"><i
+                            class="fab fa-linkedin-in"></i></a>
+                    <a class="btn social-icon" style="background-color: #333333;" href="#"><i
+                            class="fab fa-github"></i></a>
+                </section>
+            </div>
+        </div>
+    </div>
+</footer>
+
+<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
+<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
+        integrity="sha384-pzjw8f+ua7Kw1TIq0p1t8pg6y5kPz3OX3eZ4sP+5eJ5W5p5eYl5Aa5p1WvU5hQQg"
+        crossorigin="anonymous"></script>
+
+</body>
+</html>
Index: resources/views/travel-activities/create.blade.php
===================================================================
--- resources/views/travel-activities/create.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/travel-activities/create.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Edit Travel Activities</title>
+    <script src="https://cdn.tailwindcss.com"></script>
+</head>
+<body class="bg-gray-100 p-6">
+<div class="max-w-xl mx-auto bg-white p-6 rounded-lg shadow-md">
+    <h1 class="text-2xl font-bold mb-4">Креирај нова активност </h1>
+
+    <form action="{{ route('travel-activities.store') }}" method="POST">
+        @csrf
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Име</label>
+            <input type="text" name="imeaktivnost" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Информации</label>
+            <input type="text" name="informacii" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Категорија</label>
+            <input type="text" name="kategorija" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Износ</label>
+            <input type="number" name="iznos" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <button type="submit" class="bg-green-500 text-white px-4 py-2 rounded">Додади активност</button>
+    </form>
+
+</div>
+</body>
+</html>
Index: resources/views/travel-activities/edit.blade.php
===================================================================
--- resources/views/travel-activities/edit.blade.php	(revision 7bbc4e6c6223e78eb9a6d2b102427a7c5876808c)
+++ resources/views/travel-activities/edit.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -1,1 +1,42 @@
-<?php
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Edit Travel Activities</title>
+    <script src="https://cdn.tailwindcss.com"></script>
+</head>
+<body class="bg-gray-100 p-6">
+<div class="max-w-xl mx-auto bg-white p-6 rounded-lg shadow-md">
+    <h1 class="text-2xl font-bold mb-4">Промени ја активноста</h1>
+
+   <form action="{{ route('travel-activities.update', $travelActivity) }}" method="POST">
+
+        @csrf
+        @method('PUT')
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Име</label>
+            <input type="text" name="imeaktivnost" value="{{ $travelActivity->imeaktivnost }}" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Информации</label>
+            <input type="text" name="informacii" value="{{ $travelActivity->informacii }}" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Категорија</label>
+            <input type="text" name="kategorija" value="{{ $travelActivity->kategorija }}" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Износ</label>
+            <input type="number" name="iznos" value="{{ $travelActivity->iznos }}" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <button type="submit" class="bg-green-500 text-white px-4 py-2 rounded">Зачувај промени</button>
+    </form>
+</div>
+</body>
+</html>
Index: resources/views/travel-activities/index.blade.php
===================================================================
--- resources/views/travel-activities/index.blade.php	(revision 7bbc4e6c6223e78eb9a6d2b102427a7c5876808c)
+++ resources/views/travel-activities/index.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -1,1 +1,51 @@
-<?php
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Travel Activities</title>
+    <script src="https://cdn.tailwindcss.com"></script>
+</head>
+<body class="bg-gray-100 p-6">
+<div class="max-w-4xl mx-auto bg-white p-6 rounded-lg shadow-md">
+    <h1 class="text-2xl font-bold mb-4">Активности</h1>
+    <a href="{{ route('travel-activities.create') }}" class="bg-blue-500 text-white px-4 py-2 rounded mb-4 inline-block">Креирај нова активност</a>
+
+    @if(session('success'))
+        <p class="text-green-500 mt-4">{{ session('success') }}</p>
+    @endif
+
+    <table class="w-full mt-4 border-collapse border border-gray-300">
+        <thead>
+        <tr class="bg-gray-200">
+            <th class="border px-4 py-2">ИД</th>
+            <th class="border px-4 py-2">Име на активност</th>
+            <th class="border px-4 py-2">Информации</th>
+            <th class="border px-4 py-2">Категорија</th>
+            <th class="border px-4 py-2">Износ</th>
+            <th class="border px-4 py-2">Акции</th>
+        </tr>
+        </thead>
+        <tbody>
+        @foreach ($travelActivities as $activity)
+            <tr class="border">
+                <td class="border px-4 py-2">{{ $activity->idaktivnost }}</td>
+                <td class="border px-4 py-2">{{ $activity->imeaktivnost }}</td>
+                <td class="border px-4 py-2">{{ $activity->informacii }}</td>
+                <td class="border px-4 py-2">{{ $activity->kategorija }}</td>
+                <td class="border px-4 py-2">{{ $activity->iznos }}</td>
+                <td class="border px-4 py-2">
+                    <a href="{{ route('travel-activities.edit', $activity) }}" class="text-blue-500">Измени</a>
+                    <form action="{{ route('travel-activities.destroy', $activity) }}" method="POST" class="inline-block">
+                        @csrf
+                        @method('DELETE')
+                        <button type="submit" class="text-red-500 ml-2">Избриши</button>
+                    </form>
+                </td>
+            </tr>
+        @endforeach
+        </tbody>
+    </table>
+</div>
+</body>
+</html>
Index: resources/views/travel-events/create.blade.php
===================================================================
--- resources/views/travel-events/create.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/travel-events/create.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Edit Travel Event</title>
+    <script src="https://cdn.tailwindcss.com"></script>
+</head>
+<body class="bg-gray-100 p-6">
+    <div class="max-w-xl mx-auto bg-white p-6 rounded-lg shadow-md">
+        <h1 class="text-2xl font-bold mb-4">Креирај нов настан</h1>
+
+        <form action="{{ route('travel-events.store') }}" method="POST">
+            @csrf
+
+            <div class="mb-4">
+                <label class="block text-gray-700">Име</label>
+                <input type="text" name="naziv" class="w-full border px-4 py-2 rounded">
+            </div>
+
+            <div class="mb-4">
+                <label class="block text-gray-700">Тип</label>
+                <input type="text" name="vidovi" class="w-full border px-4 py-2 rounded">
+            </div>
+
+            <div class="mb-4">
+                <label class="block text-gray-700">Детали</label>
+                <textarea name="detali" class="w-full border px-4 py-2 rounded"></textarea>
+            </div>
+
+            <div class="mb-4">
+                <label class="block text-gray-700">Почетен датум</label>
+                <input type="date" name="pochetendatum" class="w-full border px-4 py-2 rounded">
+            </div>
+
+            <div class="mb-4">
+                <label class="block text-gray-700">Краен датум</label>
+                <input type="date" name="kraendatum" class="w-full border px-4 py-2 rounded">
+            </div>
+
+            <button type="submit" class="bg-green-500 text-white px-4 py-2 rounded">Додади настан</button>
+        </form>
+
+    </div>
+</body>
+</html>
Index: resources/views/travel-events/edit.blade.php
===================================================================
--- resources/views/travel-events/edit.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/travel-events/edit.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,47 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Edit Travel Event</title>
+    <script src="https://cdn.tailwindcss.com"></script>
+</head>
+<body class="bg-gray-100 p-6">
+<div class="max-w-xl mx-auto bg-white p-6 rounded-lg shadow-md">
+    <h1 class="text-2xl font-bold mb-4">Промени го настанот</h1>
+
+    <form action="{{ route('travel-events.update', $travelEvent) }}" method="POST">
+        @csrf
+        @method('PUT')
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Име</label>
+            <input type="text" name="naziv" value="{{ $travelEvent->naziv }}" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Тип</label>
+            <input type="text" name="vidovi" value="{{ $travelEvent->vidovi }}" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Детали</label>
+            <textarea name="detali" class="w-full border px-4 py-2 rounded">{{ $travelEvent->detali }}</textarea>
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Почетен датум</label>
+            <input type="date" name="pochetendatum" value="{{ $travelEvent->pochetendatum }}" class="w-full border px-4 py-2 rounded">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Краен датум</label>
+            <input type="date" name="kraendatum" value="{{ $travelEvent->kraendatum }}" class="w-full border px-4 py-2 rounded">
+        </div>
+
+
+        <button type="submit" class="bg-green-500 text-white px-4 py-2 rounded">Зачувај промени</button>
+    </form>
+</div>
+</body>
+</html>
Index: resources/views/travel-events/index.blade.php
===================================================================
--- resources/views/travel-events/index.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/travel-events/index.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,53 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Travel Events</title>
+    <script src="https://cdn.tailwindcss.com"></script>
+</head>
+<body class="bg-gray-100 p-6">
+<div class="max-w-4xl mx-auto bg-white p-6 rounded-lg shadow-md">
+    <h1 class="text-2xl font-bold mb-4">Настани</h1>
+    <a href="{{ route('travel-events.create') }}" class="bg-blue-500 text-white px-4 py-2 rounded mb-4 inline-block">Креирај нов настан</a>
+
+@if(session('success'))
+        <p class="text-green-500 mt-4">{{ session('success') }}</p>
+    @endif
+
+    <table class="w-full mt-4 border-collapse border border-gray-300">
+        <thead>
+        <tr class="bg-gray-200">
+            <th class="border px-4 py-2">ИД</th>
+            <th class="border px-4 py-2">Име на настан</th>
+            <th class="border px-4 py-2">Видови</th>
+            <th class="border px-4 py-2">Детали</th>
+            <th class="border px-4 py-2">Почетен датум</th>
+            <th class="border px-4 py-2">Краен датум</th>
+            <th class="border px-4 py-2">Акции</th>
+        </tr>
+        </thead>
+        <tbody>
+        @foreach ($travelEvents as $event)
+            <tr class="border">
+                <td class="border px-4 py-2">{{ $event->idnastan }}</td>
+                <td class="border px-4 py-2">{{ $event->naziv }}</td>
+                <td class="border px-4 py-2">{{ $event->vidovi }}</td>
+                <td class="border px-4 py-2">{{ $event->detali }}</td>
+                <td class="border px-4 py-2">{{ $event->pochetendatum }}</td>
+                <td class="border px-4 py-2">{{ $event->kraendatum }}</td>
+                <td class="border px-4 py-2">
+                    <a href="{{ route('travel-events.edit', $event) }}" class="text-blue-500">Измени</a>
+                    <form action="{{ route('travel-events.destroy', $event) }}" method="POST" class="inline-block">
+                        @csrf
+                        @method('DELETE')
+                        <button type="submit" class="text-red-500 ml-2">Избриши</button>
+                    </form>
+                </td>
+            </tr>
+        @endforeach
+        </tbody>
+    </table>
+</div>
+</body>
+</html>
Index: resources/views/travel-packages/create.blade.php
===================================================================
--- resources/views/travel-packages/create.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/travel-packages/create.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,40 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Креирај нов пакет</title>
+    <script src="https://cdn.tailwindcss.com"></script>
+</head>
+<body class="bg-gray-100 p-6">
+<div class="max-w-xl mx-auto bg-white p-6 rounded-lg shadow-md">
+    <h1 class="text-2xl font-bold mb-4">Креирај нов пакет</h1>
+
+    <form action="{{ route('travel-packages.store') }}" method="POST">
+        @csrf
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Име на пакетот</label>
+            <input type="text" name="imepaket" class="w-full border px-4 py-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Цена</label>
+            <input type="number" name="cena" class="w-full border px-4 py-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Почеток</label>
+            <input type="datetime-local" name="pochetok" class="w-full border px-4 py-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Крај</label>
+            <input type="datetime-local" name="kraj" class="w-full border px-4 py-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
+        </div>
+
+        <button type="submit" class="bg-green-500 text-white px-4 py-2 rounded">Додади пакет</button>
+    </form>
+</div>
+</body>
+</html>
Index: resources/views/travel-packages/edit.blade.php
===================================================================
--- resources/views/travel-packages/edit.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/travel-packages/edit.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,41 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Промени пакет</title>
+    <script src="https://cdn.tailwindcss.com"></script>
+</head>
+<body class="bg-gray-100 p-6">
+<div class="max-w-xl mx-auto bg-white p-6 rounded-lg shadow-md">
+    <h1 class="text-2xl font-bold mb-4">Промени го пакетот</h1>
+
+    <form action="{{ route('travel-packages.update', $travelPackage) }}" method="POST">
+        @csrf
+        @method('PUT')
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Име на пакетот</label>
+            <input type="text" name="imepaket" value="{{ old('imepaket', $travelPackage->imepaket) }}" class="w-full border px-4 py-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Цена</label>
+            <input type="number" name="cena" value="{{ old('cena', $travelPackage->cena) }}" class="w-full border px-4 py-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Почеток</label>
+            <input type="datetime-local" name="pochetok" value="{{ old('pochetok', $travelPackage->pochetok) }}" class="w-full border px-4 py-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
+        </div>
+
+        <div class="mb-4">
+            <label class="block text-gray-700">Крај</label>
+            <input type="datetime-local" name="kraj" value="{{ old('kraj', $travelPackage->kraj) }}" class="w-full border px-4 py-2 rounded focus:outline-none focus:ring-2 focus:ring-blue-500">
+        </div>
+
+        <button type="submit" class="bg-green-500 text-white px-4 py-2 rounded">Зачувај промени</button>
+    </form>
+</div>
+</body>
+</html>
Index: resources/views/travel-packages/index.blade.php
===================================================================
--- resources/views/travel-packages/index.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
+++ resources/views/travel-packages/index.blade.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -0,0 +1,51 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>Пакети</title>
+    <script src="https://cdn.tailwindcss.com"></script>
+</head>
+<body class="bg-gray-100 p-6">
+<div class="max-w-4xl mx-auto bg-white p-6 rounded-lg shadow-md">
+    <h1 class="text-2xl font-bold mb-4">Пакети</h1>
+    <a href="{{ route('travel-packages.create') }}" class="bg-blue-500 text-white px-4 py-2 rounded mb-4 inline-block">Креирај нов пакет</a>
+
+    @if(session('success'))
+        <p class="text-green-500 mt-4">{{ session('success') }}</p>
+    @endif
+
+    <table class="w-full mt-4 border-collapse border border-gray-300">
+        <thead>
+        <tr class="bg-gray-200">
+            <th class="border px-4 py-2">ИД</th>
+            <th class="border px-4 py-2">Име на пакет</th>
+            <th class="border px-4 py-2">Цена</th>
+            <th class="border px-4 py-2">Почеток</th>
+            <th class="border px-4 py-2">Крај</th>
+            <th class="border px-4 py-2">Акции</th>
+        </tr>
+        </thead>
+        <tbody>
+        @foreach ($travelPackages as $package)
+            <tr class="border">
+                <td class="border px-4 py-2">{{ $package->idpaket }}</td>
+                <td class="border px-4 py-2">{{ $package->imepaket }}</td>
+                <td class="border px-4 py-2">{{ $package->cena }}</td>
+                <td class="border px-4 py-2">{{ $package->pochetok }}</td>
+                <td class="border px-4 py-2">{{ $package->kraj }}</td>
+                <td class="border px-4 py-2">
+                    <a href="{{ route('travel-packages.edit', $package) }}" class="text-blue-500">Измени</a>
+                    <form action="{{ route('travel-packages.destroy', $package) }}" method="POST" class="inline-block">
+                        @csrf
+                        @method('DELETE')
+                        <button type="submit" class="text-red-500 ml-2">Избриши</button>
+                    </form>
+                </td>
+            </tr>
+        @endforeach
+        </tbody>
+    </table>
+</div>
+</body>
+</html>
Index: routes/web.php
===================================================================
--- routes/web.php	(revision 7bbc4e6c6223e78eb9a6d2b102427a7c5876808c)
+++ routes/web.php	(revision 537b1e1c00843827ceb398058d9e4c79587c771e)
@@ -1,7 +1,39 @@
 <?php
 
+use App\Http\Controllers\AuthController;
+use App\Http\Controllers\DestinationController;
+use App\Http\Controllers\PreferencesController;
+use App\Http\Controllers\SearchController;
+use App\Http\Controllers\TravelActivityController;
+use App\Http\Controllers\TravelEventController;
+use App\Http\Controllers\TravelPackageController;
 use Illuminate\Support\Facades\Route;
 
 Route::get('/', function () {
-    return view('welcome');
+    return view('index');
 });
+
+Route::get('/login', function () {
+    return view('login');
+})->name('login');
+
+Route::resource('destinations', DestinationController::class)->only('index', 'show');
+
+Route::get('/login', [AuthController::class, 'showLoginForm'])->name('login');
+Route::post('/login', [AuthController::class, 'store'])->name('login');
+
+Route::get('/preferences', function () {
+    return view('preferences');
+})->name('preferences');
+
+
+
+/* manager side */
+Route::post('/travel-events', [TravelEventController::class, 'store'])->name('travel-events.store');
+Route::resource('travel-events', TravelEventController::class);
+
+Route::post('/travel-activities', [TravelActivityController::class, 'store'])->name('travel-activities.store');
+Route::resource('travel-activities', TravelActivityController::class);
+
+Route::post('/travel-packages', [TravelPackageController::class, 'store'])->name('travel-packages.store');
+Route::resource('travel-packages', TravelPackageController::class);
