diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..33485c6
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,3 @@
+vendor/
+node_modules/
+.git/
\ No newline at end of file
diff --git a/.editorconfig b/.editorconfig
old mode 100755
new mode 100644
diff --git a/.env.example b/.env.example
old mode 100755
new mode 100644
diff --git a/.gitattributes b/.gitattributes
old mode 100755
new mode 100644
diff --git a/.gitignore b/.gitignore
old mode 100755
new mode 100644
diff --git a/Dockerfile b/Dockerfile
old mode 100755
new mode 100644
diff --git a/README.md b/README.md
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/AdditionalController.php b/app/Http/Controllers/Admin/AdditionalController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/AuthController.php b/app/Http/Controllers/Admin/AuthController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/BerandaController.php b/app/Http/Controllers/Admin/BerandaController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/BuketController.php b/app/Http/Controllers/Admin/BuketController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/FotoController.php b/app/Http/Controllers/Admin/FotoController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/HistoriPesananController.php b/app/Http/Controllers/Admin/HistoriPesananController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/ManajemenAdminController.php b/app/Http/Controllers/Admin/ManajemenAdminController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/PesananBuketController.php b/app/Http/Controllers/Admin/PesananBuketController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/PesananFotoController.php b/app/Http/Controllers/Admin/PesananFotoController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Admin/ProfilController.php b/app/Http/Controllers/Admin/ProfilController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/User/BerandaController.php b/app/Http/Controllers/User/BerandaController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/User/BookingFotoController.php b/app/Http/Controllers/User/BookingFotoController.php
old mode 100755
new mode 100644
diff --git a/app/Http/Controllers/User/PesanBuketController.php b/app/Http/Controllers/User/PesanBuketController.php
old mode 100755
new mode 100644
diff --git a/app/Models/Additional.php b/app/Models/Additional.php
old mode 100755
new mode 100644
diff --git a/app/Models/BookingFoto.php b/app/Models/BookingFoto.php
old mode 100755
new mode 100644
diff --git a/app/Models/Buket.php b/app/Models/Buket.php
old mode 100755
new mode 100644
diff --git a/app/Models/DetailAdditional.php b/app/Models/DetailAdditional.php
old mode 100755
new mode 100644
diff --git a/app/Models/PaketFoto.php b/app/Models/PaketFoto.php
old mode 100755
new mode 100644
diff --git a/app/Models/Pelanggan.php b/app/Models/Pelanggan.php
old mode 100755
new mode 100644
diff --git a/app/Models/TransaksiBuket.php b/app/Models/TransaksiBuket.php
old mode 100755
new mode 100644
diff --git a/app/Models/User.php b/app/Models/User.php
old mode 100755
new mode 100644
diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php
old mode 100755
new mode 100644
diff --git a/artisan b/artisan
old mode 100755
new mode 100644
diff --git a/bootstrap/app.php b/bootstrap/app.php
old mode 100755
new mode 100644
diff --git a/bootstrap/providers.php b/bootstrap/providers.php
old mode 100755
new mode 100644
diff --git a/composer.json b/composer.json
old mode 100755
new mode 100644
diff --git a/composer.lock b/composer.lock
old mode 100755
new mode 100644
diff --git a/config/app.php b/config/app.php
old mode 100755
new mode 100644
diff --git a/config/auth.php b/config/auth.php
old mode 100755
new mode 100644
diff --git a/config/cache.php b/config/cache.php
old mode 100755
new mode 100644
diff --git a/config/database.php b/config/database.php
old mode 100755
new mode 100644
diff --git a/config/filesystems.php b/config/filesystems.php
old mode 100755
new mode 100644
diff --git a/config/logging.php b/config/logging.php
old mode 100755
new mode 100644
diff --git a/config/mail.php b/config/mail.php
old mode 100755
new mode 100644
diff --git a/config/queue.php b/config/queue.php
old mode 100755
new mode 100644
diff --git a/config/services.php b/config/services.php
old mode 100755
new mode 100644
diff --git a/config/session.php b/config/session.php
old mode 100755
new mode 100644
diff --git a/database/.gitignore b/database/.gitignore
old mode 100755
new mode 100644
diff --git a/database/factories/UserFactory.php b/database/factories/UserFactory.php
old mode 100755
new mode 100644
diff --git a/database/migrations/0001_01_01_000000_create_users_table.php b/database/migrations/0001_01_01_000000_create_users_table.php
old mode 100755
new mode 100644
diff --git a/database/migrations/0001_01_01_000001_create_cache_table.php b/database/migrations/0001_01_01_000001_create_cache_table.php
old mode 100755
new mode 100644
diff --git a/database/migrations/0001_01_01_000002_create_jobs_table.php b/database/migrations/0001_01_01_000002_create_jobs_table.php
old mode 100755
new mode 100644
diff --git a/database/migrations/2025_12_26_150422_create_bukets_table.php b/database/migrations/2025_12_26_150422_create_bukets_table.php
old mode 100755
new mode 100644
diff --git a/database/migrations/2025_12_26_150455_create_paket_fotos_table.php b/database/migrations/2025_12_26_150455_create_paket_fotos_table.php
old mode 100755
new mode 100644
diff --git a/database/migrations/2025_12_26_150512_create_additionals_table.php b/database/migrations/2025_12_26_150512_create_additionals_table.php
old mode 100755
new mode 100644
diff --git a/database/migrations/2025_12_26_150527_create_pelanggans_table.php b/database/migrations/2025_12_26_150527_create_pelanggans_table.php
old mode 100755
new mode 100644
diff --git a/database/migrations/2025_12_26_150607_create_transaksi_bukets_table.php b/database/migrations/2025_12_26_150607_create_transaksi_bukets_table.php
old mode 100755
new mode 100644
diff --git a/database/migrations/2025_12_26_150621_create_booking_fotos_table.php b/database/migrations/2025_12_26_150621_create_booking_fotos_table.php
old mode 100755
new mode 100644
diff --git a/database/migrations/2025_12_26_150637_create_detail_additionals_table.php b/database/migrations/2025_12_26_150637_create_detail_additionals_table.php
old mode 100755
new mode 100644
diff --git a/database/seeders/AdditionalSeeder.php b/database/seeders/AdditionalSeeder.php
old mode 100755
new mode 100644
diff --git a/database/seeders/BuketSeeder.php b/database/seeders/BuketSeeder.php
old mode 100755
new mode 100644
diff --git a/database/seeders/DatabaseSeeder.php b/database/seeders/DatabaseSeeder.php
old mode 100755
new mode 100644
diff --git a/database/seeders/PaketFotoSeeder.php b/database/seeders/PaketFotoSeeder.php
old mode 100755
new mode 100644
diff --git a/database/seeders/PelangganSeeder.php b/database/seeders/PelangganSeeder.php
old mode 100755
new mode 100644
diff --git a/database/seeders/TransaksiSeeder.php b/database/seeders/TransaksiSeeder.php
old mode 100755
new mode 100644
diff --git a/database/seeders/UserSeeder.php b/database/seeders/UserSeeder.php
old mode 100755
new mode 100644
diff --git a/docker-compose-backup.yml b/docker-compose-backup.yml
new file mode 100644
index 0000000..5f311ca
--- /dev/null
+++ b/docker-compose-backup.yml
@@ -0,0 +1,19 @@
+services:
+ app:
+ image: serversideup/php:8.2-fpm-nginx
+ container_name: flodo-app
+ restart: unless-stopped
+ network_mode: host
+ environment:
+ - APP_ENV=production
+ - APP_DEBUG=false
+ - WEBROOT=/var/www/html/public
+ - PHP_OPEN_BASEDIR=/var/www/html/:/tmp/:/usr/bin/
+ - PUID=33
+ - PGID=33
+ - PORT=8081
+ - FPM_PORT=9001
+ volumes:
+ - /www/wwwroot/flodo.web.id:/var/www/html:ro
+ - /www/wwwroot/flodo.web.id/storage:/var/www/html/storage:rw
+ - /www/wwwroot/flodo.web.id/bootstrap/cache:/var/www/html/bootstrap/cache:rw
\ No newline at end of file
diff --git a/docker-compose.yml b/docker-compose.yml
index 8ebf122..5f311ca 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,13 +1,19 @@
-version: '3.8'
-
services:
app:
- container_name: flodo-container
- build: .
+ image: serversideup/php:8.2-fpm-nginx
+ container_name: flodo-app
restart: unless-stopped
- ports:
- - "8081:80"
- extra_hosts:
- - "host.docker.internal:host-gateway"
- env_file:
- - .env
\ No newline at end of file
+ network_mode: host
+ environment:
+ - APP_ENV=production
+ - APP_DEBUG=false
+ - WEBROOT=/var/www/html/public
+ - PHP_OPEN_BASEDIR=/var/www/html/:/tmp/:/usr/bin/
+ - PUID=33
+ - PGID=33
+ - PORT=8081
+ - FPM_PORT=9001
+ volumes:
+ - /www/wwwroot/flodo.web.id:/var/www/html:ro
+ - /www/wwwroot/flodo.web.id/storage:/var/www/html/storage:rw
+ - /www/wwwroot/flodo.web.id/bootstrap/cache:/var/www/html/bootstrap/cache:rw
\ No newline at end of file
diff --git a/nginx.conf b/nginx.conf
old mode 100755
new mode 100644
diff --git a/package-lock.json b/package-lock.json
old mode 100755
new mode 100644
diff --git a/package.json b/package.json
old mode 100755
new mode 100644
diff --git a/phpunit.xml b/phpunit.xml
old mode 100755
new mode 100644
diff --git a/public/.htaccess b/public/.htaccess
old mode 100755
new mode 100644
diff --git a/public/css/app-dark.css b/public/css/app-dark.css
old mode 100755
new mode 100644
diff --git a/public/css/app.css b/public/css/app.css
old mode 100755
new mode 100644
diff --git a/public/css/fonts/bootstrap-icons.woff2 b/public/css/fonts/bootstrap-icons.woff2
old mode 100755
new mode 100644
diff --git a/public/css/simple-datatables.css b/public/css/simple-datatables.css
old mode 100755
new mode 100644
diff --git a/public/css/table-datatable.css b/public/css/table-datatable.css
old mode 100755
new mode 100644
diff --git a/public/css/user/main.css b/public/css/user/main.css
old mode 100755
new mode 100644
diff --git a/public/favicon.ico b/public/favicon.ico
old mode 100755
new mode 100644
diff --git a/public/img/ava.png b/public/img/ava.png
old mode 100755
new mode 100644
diff --git a/public/img/beranda/florist1.jpeg b/public/img/beranda/florist1.jpeg
old mode 100755
new mode 100644
diff --git a/public/img/beranda/florist2.jpeg b/public/img/beranda/florist2.jpeg
old mode 100755
new mode 100644
diff --git a/public/img/beranda/florist3.jpeg b/public/img/beranda/florist3.jpeg
old mode 100755
new mode 100644
diff --git a/public/img/beranda/hero-buket.jpg b/public/img/beranda/hero-buket.jpg
old mode 100755
new mode 100644
diff --git a/public/img/beranda/hero-foto.jpg b/public/img/beranda/hero-foto.jpg
old mode 100755
new mode 100644
diff --git a/public/img/buket/1766817409_artificial flowers-1.jpg b/public/img/buket/1766817409_artificial flowers-1.jpg
new file mode 100644
index 0000000..eed0cda
Binary files /dev/null and b/public/img/buket/1766817409_artificial flowers-1.jpg differ
diff --git a/public/img/buket/artificial-tulip.jpg b/public/img/buket/artificial-tulip.jpg
new file mode 100644
index 0000000..2101a81
Binary files /dev/null and b/public/img/buket/artificial-tulip.jpg differ
diff --git a/public/img/buket/babybreath.jpg b/public/img/buket/babybreath.jpg
new file mode 100644
index 0000000..ae7557c
Binary files /dev/null and b/public/img/buket/babybreath.jpg differ
diff --git a/public/img/buket/buket2.jpg b/public/img/buket/buket2.jpg
new file mode 100644
index 0000000..5afdb71
Binary files /dev/null and b/public/img/buket/buket2.jpg differ
diff --git a/public/img/buket/buket3.jpg b/public/img/buket/buket3.jpg
new file mode 100644
index 0000000..970cb6f
Binary files /dev/null and b/public/img/buket/buket3.jpg differ
diff --git a/public/img/buket/garbera.jpg b/public/img/buket/garbera.jpg
new file mode 100644
index 0000000..3e50d4a
Binary files /dev/null and b/public/img/buket/garbera.jpg differ
diff --git a/public/img/buket/gran-buket.jpg b/public/img/buket/gran-buket.jpg
new file mode 100644
index 0000000..ff2e368
Binary files /dev/null and b/public/img/buket/gran-buket.jpg differ
diff --git a/public/img/buket/hidraangea.jpg b/public/img/buket/hidraangea.jpg
new file mode 100644
index 0000000..fc3454e
Binary files /dev/null and b/public/img/buket/hidraangea.jpg differ
diff --git a/public/img/buket/lavender.jpg b/public/img/buket/lavender.jpg
new file mode 100644
index 0000000..30aa4c6
Binary files /dev/null and b/public/img/buket/lavender.jpg differ
diff --git a/public/img/buket/mawar-merah-premium.jpg b/public/img/buket/mawar-merah-premium.jpg
new file mode 100644
index 0000000..95a7171
Binary files /dev/null and b/public/img/buket/mawar-merah-premium.jpg differ
diff --git a/public/img/buket/pastel-peony.jpg b/public/img/buket/pastel-peony.jpg
new file mode 100644
index 0000000..4eaec95
Binary files /dev/null and b/public/img/buket/pastel-peony.jpg differ
diff --git a/public/img/buket/single-sunflower.jpg b/public/img/buket/single-sunflower.jpg
new file mode 100644
index 0000000..f620c33
Binary files /dev/null and b/public/img/buket/single-sunflower.jpg differ
diff --git a/public/img/buket/sunflower.jpg b/public/img/buket/sunflower.jpg
new file mode 100644
index 0000000..6fcb25a
Binary files /dev/null and b/public/img/buket/sunflower.jpg differ
diff --git a/public/img/buket/white-lily.jpg b/public/img/buket/white-lily.jpg
new file mode 100644
index 0000000..0cbe6e2
Binary files /dev/null and b/public/img/buket/white-lily.jpg differ
diff --git a/public/img/foto/1766833654_latar biru 1.jpeg b/public/img/foto/1766833654_latar biru 1.jpeg
new file mode 100644
index 0000000..a8ec01a
Binary files /dev/null and b/public/img/foto/1766833654_latar biru 1.jpeg differ
diff --git a/public/img/foto/1767368465_grup.jpeg b/public/img/foto/1767368465_grup.jpeg
new file mode 100644
index 0000000..eaed204
Binary files /dev/null and b/public/img/foto/1767368465_grup.jpeg differ
diff --git a/public/img/foto/1767368482_couple.jpeg b/public/img/foto/1767368482_couple.jpeg
new file mode 100644
index 0000000..dd20386
Binary files /dev/null and b/public/img/foto/1767368482_couple.jpeg differ
diff --git a/public/img/foto/1767368572_pas-foto.jpg b/public/img/foto/1767368572_pas-foto.jpg
new file mode 100644
index 0000000..720d6cd
Binary files /dev/null and b/public/img/foto/1767368572_pas-foto.jpg differ
diff --git a/public/img/foto/1767368582_pas-foto.jpg b/public/img/foto/1767368582_pas-foto.jpg
new file mode 100644
index 0000000..720d6cd
Binary files /dev/null and b/public/img/foto/1767368582_pas-foto.jpg differ
diff --git a/public/img/foto/1767368592_pas-foto.jpg b/public/img/foto/1767368592_pas-foto.jpg
new file mode 100644
index 0000000..720d6cd
Binary files /dev/null and b/public/img/foto/1767368592_pas-foto.jpg differ
diff --git a/public/img/foto/1767368604_pas-foto.jpg b/public/img/foto/1767368604_pas-foto.jpg
new file mode 100644
index 0000000..720d6cd
Binary files /dev/null and b/public/img/foto/1767368604_pas-foto.jpg differ
diff --git a/public/img/foto/couple.jpeg b/public/img/foto/couple.jpeg
new file mode 100644
index 0000000..dd20386
Binary files /dev/null and b/public/img/foto/couple.jpeg differ
diff --git a/public/img/foto/download (1).jpeg b/public/img/foto/download (1).jpeg
new file mode 100644
index 0000000..24dea2d
Binary files /dev/null and b/public/img/foto/download (1).jpeg differ
diff --git a/public/img/foto/foto2.jpeg b/public/img/foto/foto2.jpeg
new file mode 100644
index 0000000..daa801a
Binary files /dev/null and b/public/img/foto/foto2.jpeg differ
diff --git a/public/img/foto/latar-biru.jpeg b/public/img/foto/latar-biru.jpeg
new file mode 100644
index 0000000..de11bf7
Binary files /dev/null and b/public/img/foto/latar-biru.jpeg differ
diff --git a/public/img/foto/single.jpeg b/public/img/foto/single.jpeg
new file mode 100644
index 0000000..24dea2d
Binary files /dev/null and b/public/img/foto/single.jpeg differ
diff --git a/public/img/invoice.jpg b/public/img/invoice.jpg
new file mode 100644
index 0000000..8059864
Binary files /dev/null and b/public/img/invoice.jpg differ
diff --git a/public/img/logo.png b/public/img/logo.png
old mode 100755
new mode 100644
diff --git a/public/img/payment/1766896351_bukti1.jpg b/public/img/payment/1766896351_bukti1.jpg
new file mode 100644
index 0000000..9a7a824
Binary files /dev/null and b/public/img/payment/1766896351_bukti1.jpg differ
diff --git a/public/img/payment/1766896525_bukti1.jpg b/public/img/payment/1766896525_bukti1.jpg
new file mode 100644
index 0000000..9a7a824
Binary files /dev/null and b/public/img/payment/1766896525_bukti1.jpg differ
diff --git a/public/img/payment/1766898607_bukti2.jpg b/public/img/payment/1766898607_bukti2.jpg
new file mode 100644
index 0000000..576c67c
Binary files /dev/null and b/public/img/payment/1766898607_bukti2.jpg differ
diff --git a/public/img/payment/1766898689_bukti2.jpg b/public/img/payment/1766898689_bukti2.jpg
new file mode 100644
index 0000000..576c67c
Binary files /dev/null and b/public/img/payment/1766898689_bukti2.jpg differ
diff --git a/public/img/payment/1766899285_bukti3.jpg b/public/img/payment/1766899285_bukti3.jpg
new file mode 100644
index 0000000..c6281a1
Binary files /dev/null and b/public/img/payment/1766899285_bukti3.jpg differ
diff --git a/public/img/payment/1766899369_bukti3.jpg b/public/img/payment/1766899369_bukti3.jpg
new file mode 100644
index 0000000..c6281a1
Binary files /dev/null and b/public/img/payment/1766899369_bukti3.jpg differ
diff --git a/public/img/payment/1766899417_bukti2.jpg b/public/img/payment/1766899417_bukti2.jpg
new file mode 100644
index 0000000..576c67c
Binary files /dev/null and b/public/img/payment/1766899417_bukti2.jpg differ
diff --git a/public/img/payment/buket/bukti1.jpg b/public/img/payment/buket/bukti1.jpg
new file mode 100644
index 0000000..9a7a824
Binary files /dev/null and b/public/img/payment/buket/bukti1.jpg differ
diff --git a/public/img/payment/buket/bukti2.jpg b/public/img/payment/buket/bukti2.jpg
new file mode 100644
index 0000000..576c67c
Binary files /dev/null and b/public/img/payment/buket/bukti2.jpg differ
diff --git a/public/img/payment/buket/bukti3.jpg b/public/img/payment/buket/bukti3.jpg
new file mode 100644
index 0000000..c6281a1
Binary files /dev/null and b/public/img/payment/buket/bukti3.jpg differ
diff --git a/public/img/payment/bukti_1766905812.jpg b/public/img/payment/bukti_1766905812.jpg
new file mode 100644
index 0000000..576c67c
Binary files /dev/null and b/public/img/payment/bukti_1766905812.jpg differ
diff --git a/public/img/payment/bukti_1766911106_uAh2b.jpg b/public/img/payment/bukti_1766911106_uAh2b.jpg
new file mode 100644
index 0000000..8059864
Binary files /dev/null and b/public/img/payment/bukti_1766911106_uAh2b.jpg differ
diff --git a/public/img/payment/bukti_1766911328_rU8TP.jpg b/public/img/payment/bukti_1766911328_rU8TP.jpg
new file mode 100644
index 0000000..8059864
Binary files /dev/null and b/public/img/payment/bukti_1766911328_rU8TP.jpg differ
diff --git a/public/img/payment/bukti_1766911584_7F6dk.jpg b/public/img/payment/bukti_1766911584_7F6dk.jpg
new file mode 100644
index 0000000..c6281a1
Binary files /dev/null and b/public/img/payment/bukti_1766911584_7F6dk.jpg differ
diff --git a/public/img/payment/foto/bukti1.jpg b/public/img/payment/foto/bukti1.jpg
new file mode 100644
index 0000000..9a7a824
Binary files /dev/null and b/public/img/payment/foto/bukti1.jpg differ
diff --git a/public/img/payment/foto/bukti2.jpg b/public/img/payment/foto/bukti2.jpg
new file mode 100644
index 0000000..576c67c
Binary files /dev/null and b/public/img/payment/foto/bukti2.jpg differ
diff --git a/public/img/payment/foto/bukti3.jpg b/public/img/payment/foto/bukti3.jpg
new file mode 100644
index 0000000..c6281a1
Binary files /dev/null and b/public/img/payment/foto/bukti3.jpg differ
diff --git a/public/index.php b/public/index.php
old mode 100755
new mode 100644
diff --git a/public/js/app.js b/public/js/app.js
old mode 100755
new mode 100644
diff --git a/public/js/ex-simple-datatables.js b/public/js/ex-simple-datatables.js
old mode 100755
new mode 100644
diff --git a/public/js/simple-datatables.js b/public/js/simple-datatables.js
old mode 100755
new mode 100644
diff --git a/public/js/user/js/custom.js b/public/js/user/js/custom.js
old mode 100755
new mode 100644
diff --git a/public/robots.txt b/public/robots.txt
old mode 100755
new mode 100644
diff --git a/public/vendors/PHPMailer/index.html b/public/vendors/PHPMailer/index.html
old mode 100755
new mode 100644
diff --git a/public/vendors/PHPMailer/src/DSNConfigurator.php b/public/vendors/PHPMailer/src/DSNConfigurator.php
old mode 100755
new mode 100644
diff --git a/public/vendors/PHPMailer/src/Exception.php b/public/vendors/PHPMailer/src/Exception.php
old mode 100755
new mode 100644
diff --git a/public/vendors/PHPMailer/src/OAuth.php b/public/vendors/PHPMailer/src/OAuth.php
old mode 100755
new mode 100644
diff --git a/public/vendors/PHPMailer/src/OAuthTokenProvider.php b/public/vendors/PHPMailer/src/OAuthTokenProvider.php
old mode 100755
new mode 100644
diff --git a/public/vendors/PHPMailer/src/PHPMailer.php b/public/vendors/PHPMailer/src/PHPMailer.php
old mode 100755
new mode 100644
diff --git a/public/vendors/PHPMailer/src/POP3.php b/public/vendors/PHPMailer/src/POP3.php
old mode 100755
new mode 100644
diff --git a/public/vendors/PHPMailer/src/SMTP.php b/public/vendors/PHPMailer/src/SMTP.php
old mode 100755
new mode 100644
diff --git a/public/vendors/PHPMailer/src/index.html b/public/vendors/PHPMailer/src/index.html
old mode 100755
new mode 100644
diff --git a/public/vendors/aos/aos.css b/public/vendors/aos/aos.css
old mode 100755
new mode 100644
diff --git a/public/vendors/aos/aos.js b/public/vendors/aos/aos.js
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap-icons/font/bootstrap-icons.css b/public/vendors/bootstrap-icons/font/bootstrap-icons.css
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap-icons/font/bootstrap-icons.json b/public/vendors/bootstrap-icons/font/bootstrap-icons.json
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap-icons/font/bootstrap-icons.min.css b/public/vendors/bootstrap-icons/font/bootstrap-icons.min.css
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap-icons/font/bootstrap-icons.scss b/public/vendors/bootstrap-icons/font/bootstrap-icons.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap-icons/font/fonts/bootstrap-icons.woff b/public/vendors/bootstrap-icons/font/fonts/bootstrap-icons.woff
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap-icons/font/fonts/bootstrap-icons.woff2 b/public/vendors/bootstrap-icons/font/fonts/bootstrap-icons.woff2
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/bootstrap.bundle.min.js b/public/vendors/bootstrap/bootstrap.bundle.min.js
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/bootstrap.min.css b/public/vendors/bootstrap/bootstrap.min.css
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/bs-darkmode.js b/public/vendors/bootstrap/bs-darkmode.js
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_accordion.scss b/public/vendors/bootstrap/scss/_accordion.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_alert.scss b/public/vendors/bootstrap/scss/_alert.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_badge.scss b/public/vendors/bootstrap/scss/_badge.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_breadcrumb.scss b/public/vendors/bootstrap/scss/_breadcrumb.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_button-group.scss b/public/vendors/bootstrap/scss/_button-group.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_buttons.scss b/public/vendors/bootstrap/scss/_buttons.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_card.scss b/public/vendors/bootstrap/scss/_card.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_carousel.scss b/public/vendors/bootstrap/scss/_carousel.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_close.scss b/public/vendors/bootstrap/scss/_close.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_containers.scss b/public/vendors/bootstrap/scss/_containers.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_dropdown.scss b/public/vendors/bootstrap/scss/_dropdown.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_forms.scss b/public/vendors/bootstrap/scss/_forms.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_functions.scss b/public/vendors/bootstrap/scss/_functions.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_grid.scss b/public/vendors/bootstrap/scss/_grid.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_helpers.scss b/public/vendors/bootstrap/scss/_helpers.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_images.scss b/public/vendors/bootstrap/scss/_images.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_list-group.scss b/public/vendors/bootstrap/scss/_list-group.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_maps.scss b/public/vendors/bootstrap/scss/_maps.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_mixins.scss b/public/vendors/bootstrap/scss/_mixins.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_modal.scss b/public/vendors/bootstrap/scss/_modal.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_nav.scss b/public/vendors/bootstrap/scss/_nav.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_navbar.scss b/public/vendors/bootstrap/scss/_navbar.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_offcanvas.scss b/public/vendors/bootstrap/scss/_offcanvas.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_pagination.scss b/public/vendors/bootstrap/scss/_pagination.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_placeholders.scss b/public/vendors/bootstrap/scss/_placeholders.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_popover.scss b/public/vendors/bootstrap/scss/_popover.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_progress.scss b/public/vendors/bootstrap/scss/_progress.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_reboot.scss b/public/vendors/bootstrap/scss/_reboot.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_root.scss b/public/vendors/bootstrap/scss/_root.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_spinners.scss b/public/vendors/bootstrap/scss/_spinners.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_tables.scss b/public/vendors/bootstrap/scss/_tables.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_toasts.scss b/public/vendors/bootstrap/scss/_toasts.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_tooltip.scss b/public/vendors/bootstrap/scss/_tooltip.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_transitions.scss b/public/vendors/bootstrap/scss/_transitions.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_type.scss b/public/vendors/bootstrap/scss/_type.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_utilities.scss b/public/vendors/bootstrap/scss/_utilities.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_variables-dark.scss b/public/vendors/bootstrap/scss/_variables-dark.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/_variables.scss b/public/vendors/bootstrap/scss/_variables.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/bootstrap-grid.scss b/public/vendors/bootstrap/scss/bootstrap-grid.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/bootstrap-reboot.scss b/public/vendors/bootstrap/scss/bootstrap-reboot.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/bootstrap-utilities.scss b/public/vendors/bootstrap/scss/bootstrap-utilities.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/bootstrap.scss b/public/vendors/bootstrap/scss/bootstrap.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/forms/_floating-labels.scss b/public/vendors/bootstrap/scss/forms/_floating-labels.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/forms/_form-check.scss b/public/vendors/bootstrap/scss/forms/_form-check.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/forms/_form-control.scss b/public/vendors/bootstrap/scss/forms/_form-control.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/forms/_form-range.scss b/public/vendors/bootstrap/scss/forms/_form-range.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/forms/_form-select.scss b/public/vendors/bootstrap/scss/forms/_form-select.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/forms/_form-text.scss b/public/vendors/bootstrap/scss/forms/_form-text.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/forms/_input-group.scss b/public/vendors/bootstrap/scss/forms/_input-group.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/forms/_labels.scss b/public/vendors/bootstrap/scss/forms/_labels.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/forms/_validation.scss b/public/vendors/bootstrap/scss/forms/_validation.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_clearfix.scss b/public/vendors/bootstrap/scss/helpers/_clearfix.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_color-bg.scss b/public/vendors/bootstrap/scss/helpers/_color-bg.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_colored-links.scss b/public/vendors/bootstrap/scss/helpers/_colored-links.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_focus-ring.scss b/public/vendors/bootstrap/scss/helpers/_focus-ring.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_icon-link.scss b/public/vendors/bootstrap/scss/helpers/_icon-link.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_position.scss b/public/vendors/bootstrap/scss/helpers/_position.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_ratio.scss b/public/vendors/bootstrap/scss/helpers/_ratio.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_stacks.scss b/public/vendors/bootstrap/scss/helpers/_stacks.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_stretched-link.scss b/public/vendors/bootstrap/scss/helpers/_stretched-link.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_text-truncation.scss b/public/vendors/bootstrap/scss/helpers/_text-truncation.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_visually-hidden.scss b/public/vendors/bootstrap/scss/helpers/_visually-hidden.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/helpers/_vr.scss b/public/vendors/bootstrap/scss/helpers/_vr.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_alert.scss b/public/vendors/bootstrap/scss/mixins/_alert.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_backdrop.scss b/public/vendors/bootstrap/scss/mixins/_backdrop.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_banner.scss b/public/vendors/bootstrap/scss/mixins/_banner.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_border-radius.scss b/public/vendors/bootstrap/scss/mixins/_border-radius.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_box-shadow.scss b/public/vendors/bootstrap/scss/mixins/_box-shadow.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_breakpoints.scss b/public/vendors/bootstrap/scss/mixins/_breakpoints.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_buttons.scss b/public/vendors/bootstrap/scss/mixins/_buttons.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_caret.scss b/public/vendors/bootstrap/scss/mixins/_caret.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_clearfix.scss b/public/vendors/bootstrap/scss/mixins/_clearfix.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_color-mode.scss b/public/vendors/bootstrap/scss/mixins/_color-mode.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_color-scheme.scss b/public/vendors/bootstrap/scss/mixins/_color-scheme.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_container.scss b/public/vendors/bootstrap/scss/mixins/_container.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_deprecate.scss b/public/vendors/bootstrap/scss/mixins/_deprecate.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_forms.scss b/public/vendors/bootstrap/scss/mixins/_forms.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_gradients.scss b/public/vendors/bootstrap/scss/mixins/_gradients.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_grid.scss b/public/vendors/bootstrap/scss/mixins/_grid.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_image.scss b/public/vendors/bootstrap/scss/mixins/_image.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_list-group.scss b/public/vendors/bootstrap/scss/mixins/_list-group.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_lists.scss b/public/vendors/bootstrap/scss/mixins/_lists.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_pagination.scss b/public/vendors/bootstrap/scss/mixins/_pagination.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_reset-text.scss b/public/vendors/bootstrap/scss/mixins/_reset-text.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_resize.scss b/public/vendors/bootstrap/scss/mixins/_resize.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_table-variants.scss b/public/vendors/bootstrap/scss/mixins/_table-variants.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_text-truncate.scss b/public/vendors/bootstrap/scss/mixins/_text-truncate.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_transition.scss b/public/vendors/bootstrap/scss/mixins/_transition.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_utilities.scss b/public/vendors/bootstrap/scss/mixins/_utilities.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/mixins/_visually-hidden.scss b/public/vendors/bootstrap/scss/mixins/_visually-hidden.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/tests/jasmine.js b/public/vendors/bootstrap/scss/tests/jasmine.js
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/tests/mixins/_auto-import-of-variables-dark.test.scss b/public/vendors/bootstrap/scss/tests/mixins/_auto-import-of-variables-dark.test.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/tests/mixins/_color-modes.test.scss b/public/vendors/bootstrap/scss/tests/mixins/_color-modes.test.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/tests/mixins/_media-query-color-mode-full.test.scss b/public/vendors/bootstrap/scss/tests/mixins/_media-query-color-mode-full.test.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/tests/mixins/_utilities.test.scss b/public/vendors/bootstrap/scss/tests/mixins/_utilities.test.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/tests/sass-true/register.js b/public/vendors/bootstrap/scss/tests/sass-true/register.js
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/tests/sass-true/runner.js b/public/vendors/bootstrap/scss/tests/sass-true/runner.js
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/tests/utilities/_api.test.scss b/public/vendors/bootstrap/scss/tests/utilities/_api.test.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/utilities/_api.scss b/public/vendors/bootstrap/scss/utilities/_api.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/bootstrap/scss/vendor/_rfs.scss b/public/vendors/bootstrap/scss/vendor/_rfs.scss
old mode 100755
new mode 100644
diff --git a/public/vendors/glightbox/glightbox.min.css b/public/vendors/glightbox/glightbox.min.css
old mode 100755
new mode 100644
diff --git a/public/vendors/glightbox/glightbox.min.js b/public/vendors/glightbox/glightbox.min.js
old mode 100755
new mode 100644
diff --git a/public/vendors/gsap/gsap.min.js b/public/vendors/gsap/gsap.min.js
old mode 100755
new mode 100644
diff --git a/public/vendors/imagesloaded/imagesloaded.pkgd.min.js b/public/vendors/imagesloaded/imagesloaded.pkgd.min.js
old mode 100755
new mode 100644
diff --git a/public/vendors/index.html b/public/vendors/index.html
old mode 100755
new mode 100644
diff --git a/public/vendors/isotope/isotope.pkgd.min.js b/public/vendors/isotope/isotope.pkgd.min.js
old mode 100755
new mode 100644
diff --git a/public/vendors/purecounter/purecounter.js b/public/vendors/purecounter/purecounter.js
old mode 100755
new mode 100644
diff --git a/public/vendors/swiper/swiper-bundle.min.css b/public/vendors/swiper/swiper-bundle.min.css
old mode 100755
new mode 100644
diff --git a/public/vendors/swiper/swiper-bundle.min.js b/public/vendors/swiper/swiper-bundle.min.js
old mode 100755
new mode 100644
diff --git a/resources/css/app.css b/resources/css/app.css
old mode 100755
new mode 100644
diff --git a/resources/js/app.js b/resources/js/app.js
old mode 100755
new mode 100644
diff --git a/resources/js/bootstrap.js b/resources/js/bootstrap.js
old mode 100755
new mode 100644
diff --git a/resources/views/admin/beranda/admin.blade.php b/resources/views/admin/beranda/admin.blade.php
new file mode 100644
index 0000000..b1ea2d8
--- /dev/null
+++ b/resources/views/admin/beranda/admin.blade.php
@@ -0,0 +1,203 @@
+@extends('layouts.admin')
+
+@section('title', 'Beranda')
+
+@section('content')
+ 1 Congratulations Congratulations Congratulations Congratulations 1 Congratulations Congratulations Congratulations CongratulationsBunga Diambil Hari Ini
+
+
+
+
+
+
+
+ Waktu
+ Nama Pelanggan
+ Nama Buket
+ Aksi
+
+
+
+ Si Ganteng
+ Komentar dia...
+ cb
+
+
+
+
+
+ Jadwal Foto Hari Ini
+
+
+
+
+
+
+
+ Waktu
+ Nama Pelanggan
+ Nama Paket
+ Aksi
+
+
+
+ Si Keren
+ Komentar dia...
+ cb
+
+
+
+
+
+ Pesanan Pending
+
+
+
+
+
+
+
+ No.
+ Nama Pelanggan
+ Nama Buket
+ Tanggal Ambil
+ Total
+ Status
+ Aksi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Selesai
+
+
+
+
+
+
+
+
+
+
+
+
+
+ No.
+ Nama Pelanggan
+ Nama Paket
+ Tanggal Booking
+ Total
+ Status
+ Aksi
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Selesai
+
+
+
+
+
+
+
| Waktu | +Nama Pelanggan | +Nama Buket | +Aksi | +
|---|---|---|---|
| Si Ganteng | +Komentar dia... | +cb | ++ + + + | +
| Waktu | +Nama Pelanggan | +Nama Paket | +Aksi | +
|---|---|---|---|
| Si Keren | +Komentar dia... | +cb | ++ + + + | +
| No. | +Nama Pelanggan | +Nama Buket | +Tanggal Ambil | +Total | +Status | +Aksi | +
|---|---|---|---|---|---|---|
|
+ 1 + |
+
+ Congratulations + |
+
+ Congratulations + |
+
+ Congratulations + |
+
+ Congratulations + |
+ + Selesai + | ++ + + + | +
| No. | +Nama Pelanggan | +Nama Paket | +Tanggal Booking | +Total | +Status | +Aksi | +
|---|---|---|---|---|---|---|
|
+ 1 + |
+
+ Congratulations + |
+
+ Congratulations + |
+
+ Congratulations + |
+
+ Congratulations + |
+ + Selesai + | ++ + + + | +