├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── package.json ├── publishable ├── assets │ ├── css │ │ ├── pwa-admin.css │ │ └── pwa.css │ ├── images │ │ ├── 1-star-icon.svg │ │ ├── 144x144.png │ │ ├── 196x196.png │ │ ├── 2-star-icon.svg │ │ ├── 3-star-icon.svg │ │ ├── 4-star-icon.svg │ │ ├── 48x48.png │ │ ├── 5-star-icon.svg │ │ ├── 96x96.png │ │ ├── Icon-PWA-Active.svg │ │ ├── Icon-PWA.svg │ │ ├── Icon-bell.svg │ │ ├── accordian-down-icon.svg │ │ ├── accordian-up-icon.svg │ │ ├── add-new-white-icon.svg │ │ ├── arrow-bottom-white-icon.svg │ │ ├── arrow-right-icon.svg │ │ ├── arrow_left_icon.png │ │ ├── avatar.svg │ │ ├── back-icon.svg │ │ ├── back-white-icon.svg │ │ ├── bar-icon.svg │ │ ├── blur-bg.png │ │ ├── camera.svg │ │ ├── cart-icon.svg │ │ ├── category-image.png │ │ ├── compare_arrows.png │ │ ├── controls.svg │ │ ├── empty-addresses.svg │ │ ├── empty-cart-icon.svg │ │ ├── empty-cart.svg │ │ ├── empty-category.png │ │ ├── empty-orders.svg │ │ ├── empty-reviews.svg │ │ ├── empty-search.svg │ │ ├── empty-wishlist.svg │ │ ├── filled-wishlist-icon.svg │ │ ├── home-icon.svg │ │ ├── minus-icon.svg │ │ ├── notification-icon.svg │ │ ├── offline.svg │ │ ├── order-success.svg │ │ ├── plus-icon.svg │ │ ├── search-icon.svg │ │ ├── share-icon.svg │ │ ├── sharp-arrow-left-icon.svg │ │ ├── sharp-arrow-line-icon.svg │ │ ├── sharp-arrow-right-icon.svg │ │ ├── sharp-cross-icon.svg │ │ ├── sharp-done-green.svg │ │ ├── sharp-done-white.svg │ │ ├── sharp-edit-icon.svg │ │ ├── sharp-filter-icon.svg │ │ ├── sharp-grid-icon.svg │ │ ├── sharp-invoice-icon.svg │ │ ├── sharp-list-icon.svg │ │ ├── sharp-plus-icon.svg │ │ ├── sharp-post-review-icon.svg │ │ ├── sharp-remove-icon.svg │ │ ├── sharp-repeat-icon.svg │ │ ├── sharp-save-icon.svg │ │ ├── sharp-sort-icon.svg │ │ ├── sharp-trash-icon.svg │ │ ├── star-active-icon.svg │ │ ├── star-icon.svg │ │ ├── star-white-icon.png │ │ ├── star-white-icon.svg │ │ ├── update-icon.svg │ │ ├── white-post-review-icon.svg │ │ └── wishlist-icon.svg │ ├── js │ │ ├── app.js │ │ └── app.js.LICENSE.txt │ └── mix-manifest.json └── pwa │ ├── dist │ └── service-worker.dev.js │ ├── firebase-messaging-sw.js │ ├── manifest.json │ └── service-worker.js ├── src ├── Config │ ├── acl.php │ ├── admin-menu.php │ └── system.php ├── Contracts │ ├── PWALayout.php │ └── PushNotification.php ├── DataGrids │ └── PushNotificationDataGrid.php ├── Database │ └── Migrations │ │ ├── 2019_07_02_121434_create_push_notifications_table.php │ │ ├── 2020_11_05_114057_add_category_product_pwa_in_categories.php │ │ └── 2020_11_10_090451_create_pwa_layout_table.php ├── Helpers │ ├── AdminHelper.php │ ├── Price.php │ └── PwaConfigurableOption.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── LayoutController.php │ │ │ └── PushNotificationController.php │ │ ├── Controller.php │ │ ├── Shop │ │ │ ├── CheckoutController.php │ │ │ ├── ComparisonController.php │ │ │ ├── InvoiceController.php │ │ │ ├── LayoutController.php │ │ │ ├── ProductController.php │ │ │ ├── ReviewController.php │ │ │ ├── SmartButtonController.php │ │ │ └── ThemeController.php │ │ ├── SinglePageController.php │ │ └── StandardController.php │ └── Resources │ │ ├── Catalog │ │ └── Category.php │ │ └── Core │ │ ├── Channel.php │ │ ├── Currency.php │ │ └── Locale.php ├── Listeners │ ├── CoreConfig.php │ └── PWAListeners.php ├── Models │ ├── PWALayout.php │ ├── PWALayoutProxy.php │ ├── PushNotification.php │ └── PushNotificationProxy.php ├── Payment │ └── Standard.php ├── Providers │ ├── EventServiceProvider.php │ ├── ModuleServiceProvider.php │ └── PWAServiceProvider.php ├── Repositories │ ├── PWALayoutRepository.php │ └── PushNotificationRepository.php ├── Resources │ ├── assets │ │ ├── firebase │ │ │ ├── firebase-messaging-sw.js │ │ │ └── service-worker.js │ │ ├── images │ │ │ ├── 1-star-icon.svg │ │ │ ├── 144x144.png │ │ │ ├── 196x196.png │ │ │ ├── 2-star-icon.svg │ │ │ ├── 3-star-icon.svg │ │ │ ├── 4-star-icon.svg │ │ │ ├── 48x48.png │ │ │ ├── 5-star-icon.svg │ │ │ ├── 96x96.png │ │ │ ├── Icon-PWA-Active.svg │ │ │ ├── Icon-PWA.svg │ │ │ ├── Icon-bell.svg │ │ │ ├── accordian-down-icon.svg │ │ │ ├── accordian-up-icon.svg │ │ │ ├── add-new-white-icon.svg │ │ │ ├── arrow-bottom-white-icon.svg │ │ │ ├── arrow-right-icon.svg │ │ │ ├── avatar.svg │ │ │ ├── back-icon.svg │ │ │ ├── back-white-icon.svg │ │ │ ├── bar-icon.svg │ │ │ ├── blur-bg.png │ │ │ ├── camera.svg │ │ │ ├── cart-icon.svg │ │ │ ├── category-image.png │ │ │ ├── compare_arrows.png │ │ │ ├── controls.svg │ │ │ ├── empty-addresses.svg │ │ │ ├── empty-cart-icon.svg │ │ │ ├── empty-cart.svg │ │ │ ├── empty-category.png │ │ │ ├── empty-orders.svg │ │ │ ├── empty-reviews.svg │ │ │ ├── empty-search.svg │ │ │ ├── empty-wishlist.svg │ │ │ ├── filled-wishlist-icon.svg │ │ │ ├── minus-icon.svg │ │ │ ├── notification-icon.svg │ │ │ ├── offline.svg │ │ │ ├── order-success.svg │ │ │ ├── plus-icon.svg │ │ │ ├── search-icon.svg │ │ │ ├── share-icon.svg │ │ │ ├── sharp-arrow-left-icon.svg │ │ │ ├── sharp-arrow-line-icon.svg │ │ │ ├── sharp-arrow-right-icon.svg │ │ │ ├── sharp-cross-icon.svg │ │ │ ├── sharp-done-green.svg │ │ │ ├── sharp-done-white.svg │ │ │ ├── sharp-edit-icon.svg │ │ │ ├── sharp-filter-icon.svg │ │ │ ├── sharp-grid-icon.svg │ │ │ ├── sharp-invoice-icon.svg │ │ │ ├── sharp-list-icon.svg │ │ │ ├── sharp-plus-icon.svg │ │ │ ├── sharp-post-review-icon.svg │ │ │ ├── sharp-remove-icon.svg │ │ │ ├── sharp-repeat-icon.svg │ │ │ ├── sharp-save-icon.svg │ │ │ ├── sharp-sort-icon.svg │ │ │ ├── sharp-trash-icon.svg │ │ │ ├── star-active-icon.svg │ │ │ ├── star-icon.svg │ │ │ ├── star-white-icon.png │ │ │ ├── star-white-icon.svg │ │ │ ├── update-icon.svg │ │ │ ├── white-post-review-icon.svg │ │ │ └── wishlist-icon.svg │ │ ├── js │ │ │ ├── app.js │ │ │ ├── bootstrap.js │ │ │ ├── components │ │ │ │ ├── app.vue │ │ │ │ ├── categories │ │ │ │ │ ├── card.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── layered-navigation.vue │ │ │ │ │ └── no-product-found.vue │ │ │ │ ├── checkout │ │ │ │ │ ├── cart │ │ │ │ │ │ ├── empty-cart.vue │ │ │ │ │ │ ├── empty-order-list.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── item.vue │ │ │ │ │ └── onepage │ │ │ │ │ │ ├── address.vue │ │ │ │ │ │ ├── country-state.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── success.vue │ │ │ │ ├── common │ │ │ │ │ ├── ajax-loader.vue │ │ │ │ │ └── drawer-sidebar.vue │ │ │ │ ├── compare │ │ │ │ │ ├── card.vue │ │ │ │ │ ├── empty-compare.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── customers │ │ │ │ │ ├── account │ │ │ │ │ │ ├── addresses │ │ │ │ │ │ │ ├── card.vue │ │ │ │ │ │ │ ├── country-state.vue │ │ │ │ │ │ │ ├── create.vue │ │ │ │ │ │ │ ├── edit.vue │ │ │ │ │ │ │ ├── empty-address-list.vue │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── dashboard │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ ├── profile │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ │ ├── reviews │ │ │ │ │ │ │ ├── card.vue │ │ │ │ │ │ │ ├── empty-review-list.vue │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ └── view.vue │ │ │ │ │ │ ├── sales │ │ │ │ │ │ │ ├── header.vue │ │ │ │ │ │ │ ├── invoices │ │ │ │ │ │ │ │ ├── card.vue │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ └── view.vue │ │ │ │ │ │ │ ├── orders │ │ │ │ │ │ │ │ ├── card.vue │ │ │ │ │ │ │ │ ├── downloadable-products.vue │ │ │ │ │ │ │ │ ├── empty-order-list.vue │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ ├── order-filter.vue │ │ │ │ │ │ │ │ └── view.vue │ │ │ │ │ │ │ └── shipments │ │ │ │ │ │ │ │ ├── card.vue │ │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ │ └── view.vue │ │ │ │ │ │ └── wishlist │ │ │ │ │ │ │ ├── card.vue │ │ │ │ │ │ │ ├── empty-wishlist.vue │ │ │ │ │ │ │ └── index.vue │ │ │ │ │ ├── anonymous │ │ │ │ │ │ ├── forgot-password.vue │ │ │ │ │ │ ├── login-register.vue │ │ │ │ │ │ ├── login.vue │ │ │ │ │ │ └── register.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── home-page │ │ │ │ │ ├── advertisements │ │ │ │ │ │ └── advertisement.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── layouts │ │ │ │ │ ├── custom-header.vue │ │ │ │ │ ├── footer-nav.vue │ │ │ │ │ └── header-nav.vue │ │ │ │ ├── offline │ │ │ │ │ └── index.vue │ │ │ │ ├── products │ │ │ │ │ ├── attributes.vue │ │ │ │ │ ├── booking-options.vue │ │ │ │ │ ├── booking │ │ │ │ │ │ ├── appointment.vue │ │ │ │ │ │ ├── date.vue │ │ │ │ │ │ ├── default-view.vue │ │ │ │ │ │ ├── event.vue │ │ │ │ │ │ ├── rental.vue │ │ │ │ │ │ ├── slots.vue │ │ │ │ │ │ └── table-product.vue │ │ │ │ │ ├── bundle-option-item.vue │ │ │ │ │ ├── bundle-options.vue │ │ │ │ │ ├── card.vue │ │ │ │ │ ├── configurable-options.vue │ │ │ │ │ ├── downloadable-options.vue │ │ │ │ │ ├── gallery-images.vue │ │ │ │ │ ├── grouped-products-options.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ ├── price.vue │ │ │ │ │ ├── review.vue │ │ │ │ │ ├── reviews.vue │ │ │ │ │ ├── social-links.vue │ │ │ │ │ └── stock.vue │ │ │ │ ├── reviews │ │ │ │ │ ├── create.vue │ │ │ │ │ └── index.vue │ │ │ │ ├── search │ │ │ │ │ ├── empty-search.vue │ │ │ │ │ ├── image-search-result.vue │ │ │ │ │ ├── index.vue │ │ │ │ │ └── result.vue │ │ │ │ └── shared │ │ │ │ │ ├── accordian.vue │ │ │ │ │ ├── bottom-sheet.vue │ │ │ │ │ ├── donut-chart.vue │ │ │ │ │ ├── pagination.vue │ │ │ │ │ ├── tab.vue │ │ │ │ │ └── tabs.vue │ │ │ ├── directives │ │ │ │ └── sticky.vue │ │ │ ├── dist │ │ │ │ └── app.dev.js │ │ │ ├── lang │ │ │ │ ├── ar.json │ │ │ │ ├── de.json │ │ │ │ ├── en.json │ │ │ │ ├── fa.json │ │ │ │ ├── it.json │ │ │ │ ├── ja.json │ │ │ │ ├── nl.json │ │ │ │ ├── pl.json │ │ │ │ ├── pt_BR.json │ │ │ │ └── tr.json │ │ │ ├── plugins │ │ │ │ ├── dist │ │ │ │ │ └── push-notification.dev.js │ │ │ │ ├── i18n.js │ │ │ │ └── push-notification.js │ │ │ ├── router.vue │ │ │ └── store │ │ │ │ ├── actions.js │ │ │ │ ├── dist │ │ │ │ ├── actions.dev.js │ │ │ │ ├── getters.dev.js │ │ │ │ ├── index.dev.js │ │ │ │ ├── mutations.dev.js │ │ │ │ └── state.dev.js │ │ │ │ ├── index.js │ │ │ │ ├── mutations.js │ │ │ │ └── state.js │ │ └── sass │ │ │ ├── _variables.scss │ │ │ ├── admin-icon.scss │ │ │ ├── admin.scss │ │ │ ├── app.scss │ │ │ ├── dist │ │ │ ├── app.css │ │ │ ├── icons.css │ │ │ └── rtl.css │ │ │ ├── icons.scss │ │ │ └── rtl.scss │ ├── lang │ │ ├── ar │ │ │ └── app.php │ │ ├── de │ │ │ └── app.php │ │ ├── en │ │ │ └── app.php │ │ ├── es │ │ │ └── app.php │ │ ├── fa │ │ │ └── app.php │ │ ├── fr │ │ │ └── app.php │ │ ├── it │ │ │ └── app.php │ │ ├── ja │ │ │ └── app.php │ │ ├── nl │ │ │ └── app.php │ │ ├── pl │ │ │ └── app.php │ │ ├── pt_BR │ │ │ └── app.php │ │ └── tr │ │ │ └── app.php │ └── views │ │ ├── admin │ │ ├── catelog │ │ │ └── categories │ │ │ │ └── pwa.blade.php │ │ ├── layouts │ │ │ └── style.blade.php │ │ ├── push-notification │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ └── test.blade.php │ │ └── pwa-layouts │ │ │ └── index.blade.php │ │ ├── master.blade.php │ │ └── paypal │ │ └── standard-redirect.blade.php └── Routes │ ├── admin-routes.php │ ├── front-routes.php │ └── web.php └── webpack.mix.js /.gitignore: -------------------------------------------------------------------------------- 1 | package-lock.json 2 | node_modules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/package.json -------------------------------------------------------------------------------- /publishable/assets/css/pwa-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/css/pwa-admin.css -------------------------------------------------------------------------------- /publishable/assets/css/pwa.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/css/pwa.css -------------------------------------------------------------------------------- /publishable/assets/images/1-star-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/1-star-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/144x144.png -------------------------------------------------------------------------------- /publishable/assets/images/196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/196x196.png -------------------------------------------------------------------------------- /publishable/assets/images/2-star-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/2-star-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/3-star-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/3-star-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/4-star-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/4-star-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/48x48.png -------------------------------------------------------------------------------- /publishable/assets/images/5-star-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/5-star-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/96x96.png -------------------------------------------------------------------------------- /publishable/assets/images/Icon-PWA-Active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/Icon-PWA-Active.svg -------------------------------------------------------------------------------- /publishable/assets/images/Icon-PWA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/Icon-PWA.svg -------------------------------------------------------------------------------- /publishable/assets/images/Icon-bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/Icon-bell.svg -------------------------------------------------------------------------------- /publishable/assets/images/accordian-down-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/accordian-down-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/accordian-up-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/accordian-up-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/add-new-white-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/add-new-white-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/arrow-bottom-white-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/arrow-bottom-white-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/arrow-right-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/arrow-right-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/arrow_left_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/arrow_left_icon.png -------------------------------------------------------------------------------- /publishable/assets/images/avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/avatar.svg -------------------------------------------------------------------------------- /publishable/assets/images/back-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/back-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/back-white-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/back-white-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/bar-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/bar-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/blur-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/blur-bg.png -------------------------------------------------------------------------------- /publishable/assets/images/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/camera.svg -------------------------------------------------------------------------------- /publishable/assets/images/cart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/cart-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/category-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/category-image.png -------------------------------------------------------------------------------- /publishable/assets/images/compare_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/compare_arrows.png -------------------------------------------------------------------------------- /publishable/assets/images/controls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/controls.svg -------------------------------------------------------------------------------- /publishable/assets/images/empty-addresses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/empty-addresses.svg -------------------------------------------------------------------------------- /publishable/assets/images/empty-cart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/empty-cart-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/empty-cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/empty-cart.svg -------------------------------------------------------------------------------- /publishable/assets/images/empty-category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/empty-category.png -------------------------------------------------------------------------------- /publishable/assets/images/empty-orders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/empty-orders.svg -------------------------------------------------------------------------------- /publishable/assets/images/empty-reviews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/empty-reviews.svg -------------------------------------------------------------------------------- /publishable/assets/images/empty-search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/empty-search.svg -------------------------------------------------------------------------------- /publishable/assets/images/empty-wishlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/empty-wishlist.svg -------------------------------------------------------------------------------- /publishable/assets/images/filled-wishlist-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/filled-wishlist-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/home-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/home-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/minus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/minus-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/notification-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/notification-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/offline.svg -------------------------------------------------------------------------------- /publishable/assets/images/order-success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/order-success.svg -------------------------------------------------------------------------------- /publishable/assets/images/plus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/plus-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/search-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/share-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/share-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-arrow-left-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-arrow-left-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-arrow-line-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-arrow-line-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-arrow-right-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-arrow-right-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-cross-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-cross-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-done-green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-done-green.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-done-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-done-white.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-edit-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-edit-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-filter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-filter-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-grid-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-grid-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-invoice-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-invoice-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-list-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-list-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-plus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-plus-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-post-review-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-post-review-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-remove-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-remove-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-repeat-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-repeat-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-save-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-save-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-sort-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-sort-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/sharp-trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/sharp-trash-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/star-active-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/star-active-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/star-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/star-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/star-white-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/star-white-icon.png -------------------------------------------------------------------------------- /publishable/assets/images/star-white-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/star-white-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/update-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/update-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/white-post-review-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/white-post-review-icon.svg -------------------------------------------------------------------------------- /publishable/assets/images/wishlist-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/images/wishlist-icon.svg -------------------------------------------------------------------------------- /publishable/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/js/app.js -------------------------------------------------------------------------------- /publishable/assets/js/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/js/app.js.LICENSE.txt -------------------------------------------------------------------------------- /publishable/assets/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/assets/mix-manifest.json -------------------------------------------------------------------------------- /publishable/pwa/dist/service-worker.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/pwa/dist/service-worker.dev.js -------------------------------------------------------------------------------- /publishable/pwa/firebase-messaging-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/pwa/firebase-messaging-sw.js -------------------------------------------------------------------------------- /publishable/pwa/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/pwa/manifest.json -------------------------------------------------------------------------------- /publishable/pwa/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/publishable/pwa/service-worker.js -------------------------------------------------------------------------------- /src/Config/acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/src/Config/acl.php -------------------------------------------------------------------------------- /src/Config/admin-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/src/Config/admin-menu.php -------------------------------------------------------------------------------- /src/Config/system.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/src/Config/system.php -------------------------------------------------------------------------------- /src/Contracts/PWALayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bagisto/laravel-pwa/HEAD/src/Contracts/PWALayout.php -------------------------------------------------------------------------------- /src/Contracts/PushNotification.php: -------------------------------------------------------------------------------- 1 |