├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Admin │ ├── Controllers │ │ ├── AuthController.php │ │ ├── CouponCodesController.php │ │ ├── HomeController.php │ │ ├── OrdersController.php │ │ ├── ProductsController.php │ │ └── UsersController.php │ ├── bootstrap.php │ └── routes.php ├── Console │ └── Kernel.php ├── Events │ ├── OrderPaid.php │ └── OrderReviewed.php ├── Exceptions │ ├── CouponCodeUnavailableException.php │ ├── Handler.php │ ├── InternalException.php │ └── InvalidRequestException.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── CartController.php │ │ ├── Controller.php │ │ ├── CouponCodesController.php │ │ ├── OrdersController.php │ │ ├── PagesController.php │ │ ├── PaymentController.php │ │ ├── ProductsController.php │ │ └── UserAddressesController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── AddCartRequest.php │ │ ├── Admin │ │ └── HandleRefundRequest.php │ │ ├── ApplyRefundRequest.php │ │ ├── OrderRequest.php │ │ ├── Request.php │ │ ├── SendReviewRequest.php │ │ └── UserAddressRequest.php ├── Jobs │ └── CloseOrder.php ├── Listeners │ ├── SendOrderPaidMail.php │ ├── UpdateProductRating.php │ └── UpdateProductSoldCount.php ├── Models │ ├── CartItem.php │ ├── CouponCode.php │ ├── Order.php │ ├── OrderItem.php │ ├── Product.php │ ├── ProductSku.php │ ├── User.php │ └── UserAddress.php ├── Notifications │ └── OrderPaidNotification.php ├── Policies │ ├── OrderPolicy.php │ └── UserAddressPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Services │ ├── CartService.php │ └── OrderService.php └── helpers.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── admin.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── pay.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CouponCodeFactory.php │ ├── OrderFactory.php │ ├── OrderItemFactory.php │ ├── ProductFactory.php │ ├── ProductSkuFactory.php │ ├── UserAddressFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_01_04_173148_create_admin_tables.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2021_03_09_003616_create_user_addresses_table.php │ ├── 2021_03_09_033143_create_products_table.php │ ├── 2021_03_09_033147_create_product_skus_table.php │ ├── 2021_03_09_082932_create_user_favorite_products_table.php │ ├── 2021_03_09_085046_create_cart_items_table.php │ ├── 2021_03_09_090014_create_orders_table.php │ ├── 2021_03_09_090018_create_order_items_table.php │ ├── 2021_03_09_121326_create_coupon_codes_table.php │ └── 2021_03_09_121357_orders_add_coupon_code_id.php └── seeders │ ├── AdminTablesSeeder.php │ ├── CouponCodesSeeder.php │ ├── DatabaseSeeder.php │ ├── OrdersSeeder.php │ ├── ProductsSeeder.php │ ├── UserAddressesSeeder.php │ └── UsersSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── fonts │ └── vendor │ │ └── @fortawesome │ │ └── fontawesome-free │ │ ├── webfa-brands-400.eot │ │ ├── webfa-brands-400.svg │ │ ├── webfa-brands-400.ttf │ │ ├── webfa-brands-400.woff │ │ ├── webfa-brands-400.woff2 │ │ ├── webfa-regular-400.eot │ │ ├── webfa-regular-400.svg │ │ ├── webfa-regular-400.ttf │ │ ├── webfa-regular-400.woff │ │ ├── webfa-regular-400.woff2 │ │ ├── webfa-solid-900.eot │ │ ├── webfa-solid-900.svg │ │ ├── webfa-solid-900.ttf │ │ ├── webfa-solid-900.woff │ │ └── webfa-solid-900.woff2 ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt ├── vendor │ ├── laravel-admin-ext │ │ └── quill │ │ │ ├── highlight.min.js │ │ │ ├── katex.min.css │ │ │ ├── katex.min.js │ │ │ ├── monokai-sublime.min.css │ │ │ ├── quill.bubble.css │ │ │ ├── quill.min.js │ │ │ └── quill.snow.css │ └── laravel-admin │ │ ├── AdminLTE │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── AdminLTE.min.css │ │ │ │ └── skins │ │ │ │ │ ├── _all-skins.min.css │ │ │ │ │ ├── skin-black-light.min.css │ │ │ │ │ ├── skin-black.min.css │ │ │ │ │ ├── skin-blue-light.min.css │ │ │ │ │ ├── skin-blue.min.css │ │ │ │ │ ├── skin-green-light.min.css │ │ │ │ │ ├── skin-green.min.css │ │ │ │ │ ├── skin-purple-light.min.css │ │ │ │ │ ├── skin-purple.min.css │ │ │ │ │ ├── skin-red-light.min.css │ │ │ │ │ ├── skin-red.min.css │ │ │ │ │ ├── skin-yellow-light.min.css │ │ │ │ │ └── skin-yellow.min.css │ │ │ ├── img │ │ │ │ ├── boxed-bg.jpg │ │ │ │ ├── boxed-bg.png │ │ │ │ ├── default-50x50.gif │ │ │ │ ├── icons.png │ │ │ │ └── user2-160x160.jpg │ │ │ └── js │ │ │ │ └── app.min.js │ │ └── plugins │ │ │ ├── bootstrap-slider │ │ │ ├── bootstrap-slider.js │ │ │ └── slider.css │ │ │ ├── colorpicker │ │ │ ├── bootstrap-colorpicker.min.css │ │ │ ├── bootstrap-colorpicker.min.js │ │ │ └── img │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ │ ├── iCheck │ │ │ ├── all.css │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.css │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ ├── icheck.min.js │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── blue.css │ │ │ │ ├── green.css │ │ │ │ ├── grey.css │ │ │ │ ├── line.css │ │ │ │ ├── line.png │ │ │ │ ├── line@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── pink.css │ │ │ │ ├── purple.css │ │ │ │ ├── red.css │ │ │ │ └── yellow.css │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.css │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.css │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.css │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.css │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.css │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.css │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.css │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.css │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.css │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.css │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── input-mask │ │ │ ├── jquery.inputmask.bundle.min.js │ │ │ └── phone-codes │ │ │ │ ├── phone-be.json │ │ │ │ ├── phone-codes.json │ │ │ │ └── readme.txt │ │ │ ├── ionslider │ │ │ ├── img │ │ │ │ ├── sprite-skin-flat.png │ │ │ │ └── sprite-skin-nice.png │ │ │ ├── ion.rangeSlider.css │ │ │ ├── ion.rangeSlider.min.js │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ ├── jQuery │ │ │ └── jQuery-2.1.4.min.js │ │ │ ├── select2 │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ ├── select2.full.min.js │ │ │ └── select2.min.css │ │ │ └── slimScroll │ │ │ └── jquery.slimscroll.min.js │ │ ├── bootstrap-duallistbox │ │ └── dist │ │ │ ├── bootstrap-duallistbox.min.css │ │ │ └── jquery.bootstrap-duallistbox.min.js │ │ ├── bootstrap-fileinput │ │ ├── css │ │ │ └── fileinput.min.css │ │ ├── img │ │ │ ├── loading-sm.gif │ │ │ └── loading.gif │ │ └── js │ │ │ ├── fileinput.min.js │ │ │ └── plugins │ │ │ ├── canvas-to-blob.js │ │ │ ├── canvas-to-blob.min.js │ │ │ ├── piexif.js │ │ │ ├── piexif.min.js │ │ │ ├── purify.js │ │ │ ├── purify.min.js │ │ │ ├── sortable.js │ │ │ └── sortable.min.js │ │ ├── bootstrap-switch │ │ └── dist │ │ │ ├── css │ │ │ └── bootstrap3 │ │ │ │ └── bootstrap-switch.min.css │ │ │ └── js │ │ │ └── bootstrap-switch.min.js │ │ ├── bootstrap3-editable │ │ ├── css │ │ │ └── bootstrap-editable.css │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ └── js │ │ │ └── bootstrap-editable.min.js │ │ ├── eonasdan-bootstrap-datetimepicker │ │ └── build │ │ │ ├── css │ │ │ └── bootstrap-datetimepicker.min.css │ │ │ └── js │ │ │ └── bootstrap-datetimepicker.min.js │ │ ├── font-awesome │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── fontawesome-iconpicker │ │ └── dist │ │ │ ├── css │ │ │ └── fontawesome-iconpicker.min.css │ │ │ └── js │ │ │ └── fontawesome-iconpicker.min.js │ │ ├── google-fonts │ │ ├── fonts.css │ │ └── fonts │ │ │ ├── Source-Sans-Pro-Bold.ttf │ │ │ ├── Source-Sans-Pro-Bold.woff │ │ │ ├── Source-Sans-Pro-Bold.woff2 │ │ │ ├── Source-Sans-Pro-Italic.ttf │ │ │ ├── Source-Sans-Pro-Italic.woff │ │ │ ├── Source-Sans-Pro-Italic.woff2 │ │ │ ├── Source-Sans-Pro-Light-Italic.ttf │ │ │ ├── Source-Sans-Pro-Light-Italic.woff │ │ │ ├── Source-Sans-Pro-Light-Italic.woff2 │ │ │ ├── Source-Sans-Pro-Light.ttf │ │ │ ├── Source-Sans-Pro-Light.woff │ │ │ ├── Source-Sans-Pro-Light.woff2 │ │ │ ├── Source-Sans-Pro-Semibold-Italic.ttf │ │ │ ├── Source-Sans-Pro-Semibold-Italic.woff │ │ │ ├── Source-Sans-Pro-Semibold-Italic.woff2 │ │ │ ├── Source-Sans-Pro-Semibold.ttf │ │ │ ├── Source-Sans-Pro-Semibold.woff │ │ │ ├── Source-Sans-Pro-Semibold.woff2 │ │ │ ├── Source-Sans-Pro.eot │ │ │ ├── Source-Sans-Pro.svg │ │ │ ├── Source-Sans-Pro.ttf │ │ │ ├── Source-Sans-Pro.woff │ │ │ └── Source-Sans-Pro.woff2 │ │ ├── jquery-pjax │ │ └── jquery.pjax.js │ │ ├── laravel-admin │ │ ├── laravel-admin.css │ │ └── laravel-admin.js │ │ ├── moment │ │ └── min │ │ │ └── moment-with-locales.min.js │ │ ├── nestable │ │ ├── jquery.nestable.js │ │ └── nestable.css │ │ ├── nprogress │ │ ├── nprogress.css │ │ └── nprogress.js │ │ ├── number-input │ │ └── bootstrap-number-input.js │ │ ├── sweetalert2 │ │ └── dist │ │ │ ├── sweetalert2.css │ │ │ └── sweetalert2.min.js │ │ └── toastr │ │ └── build │ │ ├── toastr.min.css │ │ └── toastr.min.js └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ ├── SelectDistrict.js │ │ └── UserAddressesCreateAndEdit.js ├── lang │ ├── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── zh_CN │ │ └── admin.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── admin │ └── orders │ │ └── show.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── cart │ └── index.blade.php │ ├── layouts │ ├── _footer.blade.php │ ├── _header.blade.php │ └── app.blade.php │ ├── orders │ ├── index.blade.php │ ├── review.blade.php │ └── show.blade.php │ ├── pages │ ├── error.blade.php │ ├── root.blade.php │ └── success.blade.php │ ├── products │ ├── favorites.blade.php │ ├── index.blade.php │ └── show.blade.php │ └── user_addresses │ ├── create_and_edit.blade.php │ └── index.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php ├── webpack.mix.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | 17 | [*.{js,html,blade.php,css,scss}] 18 | indent_style = space 19 | indent_size = 2 20 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | APP_NAME=Laravel 2 | APP_ENV=local 3 | APP_KEY= 4 | APP_DEBUG=true 5 | APP_URL=http://localhost 6 | 7 | LOG_CHANNEL=stack 8 | LOG_LEVEL=debug 9 | 10 | DB_CONNECTION=mysql 11 | DB_HOST=127.0.0.1 12 | DB_PORT=3306 13 | DB_DATABASE=laravel 14 | DB_USERNAME=root 15 | DB_PASSWORD= 16 | 17 | BROADCAST_DRIVER=log 18 | CACHE_DRIVER=file 19 | QUEUE_CONNECTION=sync 20 | SESSION_DRIVER=file 21 | SESSION_LIFETIME=120 22 | 23 | MEMCACHED_HOST=127.0.0.1 24 | 25 | REDIS_HOST=127.0.0.1 26 | REDIS_PASSWORD=null 27 | REDIS_PORT=6379 28 | 29 | MAIL_MAILER=smtp 30 | MAIL_HOST=mailhog 31 | MAIL_PORT=1025 32 | MAIL_USERNAME=null 33 | MAIL_PASSWORD=null 34 | MAIL_ENCRYPTION=null 35 | MAIL_FROM_ADDRESS=null 36 | MAIL_FROM_NAME="${APP_NAME}" 37 | 38 | AWS_ACCESS_KEY_ID= 39 | AWS_SECRET_ACCESS_KEY= 40 | AWS_DEFAULT_REGION=us-east-1 41 | AWS_BUCKET= 42 | 43 | PUSHER_APP_ID= 44 | PUSHER_APP_KEY= 45 | PUSHER_APP_SECRET= 46 | PUSHER_APP_CLUSTER=mt1 47 | 48 | MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}" 49 | MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}" 50 | 51 | # 支付宝配置信息 52 | ALIPAY_APP_ID= 53 | ALIPAY_PUBLIC_KEY= 54 | ALIPAY_PRIVATE_KEY= 55 | 56 | # 微信支付配置信息 57 | WECHAT_PAY_APP_ID= 58 | WECHAT_PAY_MCH_ID= 59 | WECHAT_PAY_KEY= 60 | 61 | # 内网穿刺,用于支付回调 62 | NGROK_URL=http://{分配给你的域名}.ngrok.io 63 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | docker-compose.override.yml 10 | Homestead.json 11 | Homestead.yaml 12 | npm-debug.log 13 | yarn-error.log 14 | /resources/wechat_pay 15 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - no_unused_imports 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /app/Admin/Controllers/AuthController.php: -------------------------------------------------------------------------------- 1 | title('Dashboard') 17 | ->description('Description...') 18 | ->row(Dashboard::title()) 19 | ->row(function (Row $row) { 20 | 21 | $row->column(4, function (Column $column) { 22 | $column->append(Dashboard::environment()); 23 | }); 24 | 25 | $row->column(4, function (Column $column) { 26 | $column->append(Dashboard::extensions()); 27 | }); 28 | 29 | $row->column(4, function (Column $column) { 30 | $column->append(Dashboard::dependencies()); 31 | }); 32 | }); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/Admin/bootstrap.php: -------------------------------------------------------------------------------- 1 | 6 | * 7 | * Bootstraper for Admin. 8 | * 9 | * Here you can remove builtin form field: 10 | * Encore\Admin\Form::forget(['map', 'editor']); 11 | * 12 | * Or extend custom form field: 13 | * Encore\Admin\Form::extend('php', PHPEditor::class); 14 | * 15 | * Or require js and css assets: 16 | * Admin::css('/packages/prettydocs/css/styles.css'); 17 | * Admin::js('/packages/prettydocs/js/main.js'); 18 | * 19 | */ 20 | 21 | Encore\Admin\Form::forget(['map']); 22 | -------------------------------------------------------------------------------- /app/Admin/routes.php: -------------------------------------------------------------------------------- 1 | config('admin.route.prefix'), 9 | 'namespace' => config('admin.route.namespace'), 10 | 'middleware' => config('admin.route.middleware'), 11 | ], function (Router $router) { 12 | 13 | $router->get('/', 'HomeController@index'); 14 | $router->get('users', 'UsersController@index'); 15 | $router->get('products', 'ProductsController@index'); 16 | $router->get('products/create', 'ProductsController@create'); 17 | $router->post('products', 'ProductsController@store'); 18 | $router->get('products/{id}/edit', 'ProductsController@edit'); 19 | $router->put('products/{id}', 'ProductsController@update'); 20 | $router->get('orders', 'OrdersController@index')->name('admin.orders.index'); 21 | $router->get('orders/{order}', 'OrdersController@show')->name('admin.orders.show'); 22 | $router->post('orders/{order}/ship', 'OrdersController@ship')->name('admin.orders.ship'); 23 | $router->post('orders/{order}/refund', 'OrdersController@handleRefund')->name('admin.orders.handle_refund'); 24 | $router->get('coupon_codes', 'CouponCodesController@index'); 25 | $router->post('coupon_codes', 'CouponCodesController@store'); 26 | $router->get('coupon_codes/create', 'CouponCodesController@create'); 27 | $router->get('coupon_codes/{id}/edit', 'CouponCodesController@edit'); 28 | $router->put('coupon_codes/{id}', 'CouponCodesController@update'); 29 | $router->delete('coupon_codes/{id}', 'CouponCodesController@destroy'); 30 | 31 | }); 32 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire')->hourly(); 28 | } 29 | 30 | /** 31 | * Register the commands for the application. 32 | * 33 | * @return void 34 | */ 35 | protected function commands() 36 | { 37 | $this->load(__DIR__.'/Commands'); 38 | 39 | require base_path('routes/console.php'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Events/OrderPaid.php: -------------------------------------------------------------------------------- 1 | order = $order; 23 | } 24 | 25 | public function getOrder() 26 | { 27 | return $this->order; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Events/OrderReviewed.php: -------------------------------------------------------------------------------- 1 | order = $order; 23 | } 24 | 25 | public function getOrder() 26 | { 27 | return $this->order; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Exceptions/CouponCodeUnavailableException.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 20 | return response()->json(['msg' => $this->message], $this->code); 21 | } 22 | // 否则返回上一页并带上错误信息 23 | return redirect()->back()->withErrors(['coupon_code' => $this->message]); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- 1 | reportable(function (Throwable $e) { 39 | // 40 | }); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/Exceptions/InternalException.php: -------------------------------------------------------------------------------- 1 | msgForUser = $msgForUser; 16 | } 17 | 18 | public function render(Request $request) 19 | { 20 | if ($request->expectsJson()) { 21 | return response()->json(['msg' => $this->msgForUser], $this->code); 22 | } 23 | 24 | return view('pages.error', ['msg' => $this->msgForUser]); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Exceptions/InvalidRequestException.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | // json() 方法第二个参数就是 Http 返回码 19 | return response()->json(['msg' => $this->message], $this->code); 20 | } 21 | 22 | return view('pages.error', ['msg' => $this->message]); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('guest')->except('logout'); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- 1 | middleware('auth'); 39 | $this->middleware('signed')->only('verify'); 40 | $this->middleware('throttle:6,1')->only('verify', 'resend'); 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /app/Http/Controllers/CartController.php: -------------------------------------------------------------------------------- 1 | cartService = $cartService; 18 | } 19 | 20 | public function index(Request $request) 21 | { 22 | $cartItems = $this->cartService->get(); 23 | $addresses = $request->user()->addresses()->orderBy('last_used_at', 'desc')->get(); 24 | 25 | return view('cart.index', ['cartItems' => $cartItems, 'addresses' => $addresses]); 26 | } 27 | 28 | public function add(AddCartRequest $request) 29 | { 30 | $this->cartService->add($request->input('sku_id'), $request->input('amount')); 31 | 32 | return []; 33 | } 34 | 35 | public function remove(ProductSku $sku, Request $request) 36 | { 37 | $this->cartService->remove($sku->id); 38 | 39 | return []; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | first()) { 14 | throw new CouponCodeUnavailableException('优惠券不存在'); 15 | } 16 | 17 | $record->checkAvailable($request->user()); 18 | 19 | return $record; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Controllers/PagesController.php: -------------------------------------------------------------------------------- 1 | expectsJson()) { 18 | return route('login'); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | check()) { 26 | return redirect(RouteServiceProvider::HOME); 27 | } 28 | } 29 | 30 | return $next($request); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | allSubdomainsOfApplicationUrl(), 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- 1 | [ 13 | 'required', 14 | function ($attribute, $value, $fail) { 15 | if (!$sku = ProductSku::find($value)) { 16 | return $fail('该商品不存在'); 17 | } 18 | if (!$sku->product->on_sale) { 19 | return $fail('该商品未上架'); 20 | } 21 | if ($sku->stock === 0) { 22 | return $fail('该商品已售完'); 23 | } 24 | if ($this->input('amount') > 0 && $sku->stock < $this->input('amount')) { 25 | return $fail('该商品库存不足'); 26 | } 27 | }, 28 | ], 29 | 'amount' => ['required', 'integer', 'min:1'], 30 | ]; 31 | } 32 | 33 | public function attributes() 34 | { 35 | return [ 36 | 'amount' => '商品数量' 37 | ]; 38 | } 39 | 40 | public function messages() 41 | { 42 | return [ 43 | 'sku_id.required' => '请选择商品' 44 | ]; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /app/Http/Requests/Admin/HandleRefundRequest.php: -------------------------------------------------------------------------------- 1 | ['required', 'boolean'], 13 | 'reason' => ['required_if:agree,false'], // 拒绝退款时需要输入拒绝理由 14 | ]; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/Http/Requests/ApplyRefundRequest.php: -------------------------------------------------------------------------------- 1 | 'required', 11 | ]; 12 | } 13 | 14 | public function attributes() 15 | { 16 | return [ 17 | 'reason' => '原因', 18 | ]; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Http/Requests/OrderRequest.php: -------------------------------------------------------------------------------- 1 | [ 16 | 'required', 17 | Rule::exists('user_addresses', 'id')->where('user_id', $this->user()->id), 18 | ], 19 | 'items' => ['required', 'array'], 20 | 'items.*.sku_id' => [ // 检查 items 数组下每一个子数组的 sku_id 参数 21 | 'required', 22 | function ($attribute, $value, $fail) { 23 | if (!$sku = ProductSku::find($value)) { 24 | return $fail('该商品不存在'); 25 | } 26 | if (!$sku->product->on_sale) { 27 | return $fail('该商品未上架'); 28 | } 29 | if ($sku->stock === 0) { 30 | return $fail('该商品已售完'); 31 | } 32 | // 获取当前索引 33 | preg_match('/items\.(\d+)\.sku_id/', $attribute, $m); 34 | $index = $m[1]; 35 | // 根据索引找到用户所提交的购买数量 36 | $amount = $this->input('items')[$index]['amount']; 37 | if ($amount > 0 && $amount > $sku->stock) { 38 | return $fail('该商品库存不足'); 39 | } 40 | }, 41 | ], 42 | 'items.*.amount' => ['required', 'integer', 'min:1'], 43 | ]; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- 1 | ['required', 'array'], 13 | 'reviews.*.id' => [ 14 | 'required', 15 | Rule::exists('order_items', 'id')->where('order_id', $this->route('order')->id) 16 | ], 17 | 'reviews.*.rating' => ['required', 'integer', 'between:1,5'], 18 | 'reviews.*.review' => ['required'], 19 | ]; 20 | } 21 | 22 | public function attributes() 23 | { 24 | return [ 25 | 'reviews.*.rating' => '评分', 26 | 'reviews.*.review' => '评价', 27 | ]; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Requests/UserAddressRequest.php: -------------------------------------------------------------------------------- 1 | 'required', 11 | 'city' => 'required', 12 | 'district' => 'required', 13 | 'address' => 'required', 14 | 'zip' => 'required', 15 | 'contact_name' => 'required', 16 | 'contact_phone' => 'required', 17 | ]; 18 | } 19 | 20 | public function attributes() 21 | { 22 | return [ 23 | 'province' => '省', 24 | 'city' => '城市', 25 | 'district' => '地区', 26 | 'address' => '详细地址', 27 | 'zip' => '邮编', 28 | 'contact_name' => '姓名', 29 | 'contact_phone' => '电话', 30 | ]; 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Jobs/CloseOrder.php: -------------------------------------------------------------------------------- 1 | order = $order; 23 | // 设置延迟的时间,delay() 方法的参数代表多少秒之后执行 24 | $this->delay($delay); 25 | } 26 | 27 | // 定义这个任务类具体的执行逻辑 28 | // 当队列处理器从队列中取出任务时,会调用 handle() 方法 29 | public function handle() 30 | { 31 | // 判断对应的订单是否已经被支付 32 | // 如果已经支付则不需要关闭订单,直接退出 33 | if ($this->order->paid_at) { 34 | return; 35 | } 36 | // 通过事务执行 sql 37 | \DB::transaction(function() { 38 | // 将订单的 closed 字段标记为 true,即关闭订单 39 | $this->order->update(['closed' => true]); 40 | // 循环遍历订单中的商品 SKU,将订单中的数量加回到 SKU 的库存中去 41 | foreach ($this->order->items as $item) { 42 | $item->productSku->addStock($item->amount); 43 | } 44 | if ($this->order->couponCode) { 45 | $this->order->couponCode->changeUsed(false); 46 | } 47 | }); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /app/Listeners/SendOrderPaidMail.php: -------------------------------------------------------------------------------- 1 | getOrder(); 17 | // 调用 notify 方法来发送通知 18 | $order->user->notify(new OrderPaidNotification($order)); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/Listeners/UpdateProductRating.php: -------------------------------------------------------------------------------- 1 | getOrder()->items()->with(['product'])->get(); 18 | foreach ($items as $item) { 19 | $result = OrderItem::query() 20 | ->where('product_id', $item->product_id) 21 | ->whereNotNull('reviewed_at') 22 | ->whereHas('order', function ($query) { 23 | $query->whereNotNull('paid_at'); 24 | }) 25 | ->first([ 26 | DB::raw('count(*) as review_count'), 27 | DB::raw('avg(rating) as rating') 28 | ]); 29 | // 更新商品的评分和评价数 30 | $item->product->update([ 31 | 'rating' => $result->rating, 32 | 'review_count' => $result->review_count, 33 | ]); 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/Listeners/UpdateProductSoldCount.php: -------------------------------------------------------------------------------- 1 | getOrder(); 18 | // 预加载商品数据 19 | $order->load('items.product'); 20 | // 循环遍历订单的商品 21 | foreach ($order->items as $item) { 22 | $product = $item->product; 23 | // 计算对应商品的销量 24 | $soldCount = OrderItem::query() 25 | ->where('product_id', $product->id) 26 | ->whereHas('order', function ($query) { 27 | $query->whereNotNull('paid_at'); // 关联的订单状态是已支付 28 | })->sum('amount'); 29 | // 更新商品销量 30 | $product->update([ 31 | 'sold_count' => $soldCount, 32 | ]); 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /app/Models/CartItem.php: -------------------------------------------------------------------------------- 1 | belongsTo(User::class); 18 | } 19 | 20 | public function productSku() 21 | { 22 | return $this->belongsTo(ProductSku::class); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Models/OrderItem.php: -------------------------------------------------------------------------------- 1 | belongsTo(Product::class); 19 | } 20 | 21 | public function productSku() 22 | { 23 | return $this->belongsTo(ProductSku::class); 24 | } 25 | 26 | public function order() 27 | { 28 | return $this->belongsTo(Order::class); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- 1 | 'boolean', // on_sale 是一个布尔类型的字段 19 | ]; 20 | // 与商品SKU关联 21 | public function skus() 22 | { 23 | return $this->hasMany(ProductSku::class); 24 | } 25 | 26 | public function getImageUrlAttribute() 27 | { 28 | // 如果 image 字段本身就已经是完整的 url 就直接返回 29 | if (Str::startsWith($this->attributes['image'], ['http://', 'https://'])) { 30 | return $this->attributes['image']; 31 | } 32 | return \Storage::disk('public')->url($this->attributes['image']); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /app/Models/ProductSku.php: -------------------------------------------------------------------------------- 1 | belongsTo(Product::class); 18 | } 19 | 20 | public function decreaseStock($amount) 21 | { 22 | if ($amount < 0) { 23 | throw new InternalException('减库存不可小于0'); 24 | } 25 | 26 | return $this->where('id', $this->id)->where('stock', '>=', $amount)->decrement('stock', $amount); 27 | } 28 | 29 | public function addStock($amount) 30 | { 31 | if ($amount < 0) { 32 | throw new InternalException('加库存不可小于0'); 33 | } 34 | $this->increment('stock', $amount); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- 1 | 'datetime', 44 | ]; 45 | 46 | public function addresses() 47 | { 48 | return $this->hasMany(UserAddress::class); 49 | } 50 | 51 | public function favoriteProducts() 52 | { 53 | return $this->belongsToMany(Product::class, 'user_favorite_products') 54 | ->withTimestamps() 55 | ->orderBy('user_favorite_products.created_at', 'desc'); 56 | } 57 | 58 | public function cartItems() 59 | { 60 | return $this->hasMany(CartItem::class); 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /app/Models/UserAddress.php: -------------------------------------------------------------------------------- 1 | belongsTo(User::class); 27 | } 28 | 29 | public function getFullAddressAttribute() 30 | { 31 | return "{$this->province}{$this->city}{$this->district}{$this->address}"; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/Notifications/OrderPaidNotification.php: -------------------------------------------------------------------------------- 1 | order = $order; 20 | } 21 | 22 | // 我们只需要通过邮件通知,因此这里只需要一个 mail 即可 23 | public function via($notifiable) 24 | { 25 | return ['mail']; 26 | } 27 | 28 | public function toMail($notifiable) 29 | { 30 | return (new MailMessage) 31 | ->subject('订单支付成功') // 邮件标题 32 | ->greeting($this->order->user->name.'您好:') // 欢迎词 33 | ->line('您于 '.$this->order->created_at->format('m-d H:i').' 创建的订单已经支付成功。') // 邮件内容 34 | ->action('查看订单', route('orders.show', [$this->order->id])) // 邮件中的按钮及对应链接 35 | ->success(); // 按钮的色调 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /app/Policies/OrderPolicy.php: -------------------------------------------------------------------------------- 1 | user_id == $user->id; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/Policies/UserAddressPolicy.php: -------------------------------------------------------------------------------- 1 | user_id == $user->id; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 使用 Gate::guessPolicyNamesUsing 方法来自定义策略文件的寻找逻辑 29 | Gate::guessPolicyNamesUsing(function ($class) { 30 | // class_basename 是 Laravel 提供的一个辅助函数,可以获取类的简短名称 31 | // 例如传入 \App\Models\User 会返回 User 32 | return '\\App\\Policies\\'.class_basename($class).'Policy'; 33 | }); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 24 | SendEmailVerificationNotification::class, 25 | ], 26 | 27 | OrderPaid::class => [ 28 | UpdateProductSoldCount::class, 29 | SendOrderPaidMail::class, 30 | ], 31 | 32 | OrderReviewed::class => [ 33 | UpdateProductRating::class, 34 | ], 35 | ]; 36 | 37 | /** 38 | * Register any events for your application. 39 | * 40 | * @return void 41 | */ 42 | public function boot() 43 | { 44 | // 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /app/Services/CartService.php: -------------------------------------------------------------------------------- 1 | cartItems()->with(['productSku.product'])->get(); 13 | } 14 | 15 | public function add($skuId, $amount) 16 | { 17 | $user = Auth::user(); 18 | // 从数据库中查询该商品是否已经在购物车中 19 | if ($item = $user->cartItems()->where('product_sku_id', $skuId)->first()) { 20 | // 如果存在则直接叠加商品数量 21 | $item->update([ 22 | 'amount' => $item->amount + $amount, 23 | ]); 24 | } else { 25 | // 否则创建一个新的购物车记录 26 | $item = new CartItem(['amount' => $amount]); 27 | $item->user()->associate($user); 28 | $item->productSku()->associate($skuId); 29 | $item->save(); 30 | } 31 | 32 | return $item; 33 | } 34 | 35 | public function remove($skuIds) 36 | { 37 | // 可以传单个 ID,也可以传 ID 数组 38 | if (!is_array($skuIds)) { 39 | $skuIds = [$skuIds]; 40 | } 41 | Auth::user()->cartItems()->whereIn('product_sku_id', $skuIds)->delete(); 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /app/helpers.php: -------------------------------------------------------------------------------- 1 | environment('local') && $url = config('app.ngrok_url')) { 16 | // route() 函数第三个参数代表是否绝对路径 17 | return $url.route($routeName, $parameters, false); 18 | } 19 | 20 | return route($routeName, $parameters); 21 | } 22 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- 1 | ['api/*', 'sanctum/csrf-cookie'], 19 | 20 | 'allowed_methods' => ['*'], 21 | 22 | 'allowed_origins' => ['*'], 23 | 24 | 'allowed_origins_patterns' => [], 25 | 26 | 'allowed_headers' => ['*'], 27 | 28 | 'exposed_headers' => [], 29 | 30 | 'max_age' => 0, 31 | 32 | 'supports_credentials' => false, 33 | 34 | ]; 35 | -------------------------------------------------------------------------------- /config/pay.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'app_id' => env('ALIPAY_APP_ID'), 6 | 'ali_public_key' => env('ALIPAY_PUBLIC_KEY'), 7 | 'private_key' => env('ALIPAY_PRIVATE_KEY'), 8 | 'log' => [ 9 | 'file' => storage_path('logs/alipay.log'), 10 | ], 11 | ], 12 | 13 | 'wechat' => [ 14 | 'app_id' => env('WECHAT_PAY_APP_ID'), 15 | 'mch_id' => env('WECHAT_PAY_MCH_ID'), 16 | 'key' => env('WECHAT_PAY_KEY'), 17 | 'cert_client' => resource_path('wechat_pay/apiclient_cert.pem'), 18 | 'cert_key' => resource_path('wechat_pay/apiclient_key.pem'), 19 | 'log' => [ 20 | 'file' => storage_path('logs/wechat_pay.log'), 21 | ], 22 | ], 23 | ]; 24 | -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- 1 | [ 18 | 'domain' => env('MAILGUN_DOMAIN'), 19 | 'secret' => env('MAILGUN_SECRET'), 20 | 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'), 21 | ], 22 | 23 | 'postmark' => [ 24 | 'token' => env('POSTMARK_TOKEN'), 25 | ], 26 | 27 | 'ses' => [ 28 | 'key' => env('AWS_ACCESS_KEY_ID'), 29 | 'secret' => env('AWS_SECRET_ACCESS_KEY'), 30 | 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), 31 | ], 32 | 33 | ]; 34 | -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- 1 | [ 17 | resource_path('views'), 18 | ], 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Compiled View Path 23 | |-------------------------------------------------------------------------- 24 | | 25 | | This option determines where all the compiled Blade templates will be 26 | | stored for your application. Typically, this is within the storage 27 | | directory. However, as usual, you are free to change this value. 28 | | 29 | */ 30 | 31 | 'compiled' => env( 32 | 'VIEW_COMPILED_PATH', 33 | realpath(storage_path('framework/views')) 34 | ), 35 | 36 | ]; 37 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.sqlite-journal 3 | -------------------------------------------------------------------------------- /database/factories/CouponCodeFactory.php: -------------------------------------------------------------------------------- 1 | faker->randomElement(array_keys(CouponCode::$typeMap)); 27 | // 根据取得的类型生成对应折扣 28 | $value = $type === CouponCode::TYPE_FIXED ? random_int(1, 200) : random_int(1, 50); 29 | 30 | // 如果是固定金额,则最低订单金额必须要比优惠金额高 0.01 元 31 | if ($type === CouponCode::TYPE_FIXED) { 32 | $minAmount = $value + 0.01; 33 | } else { 34 | // 如果是百分比折扣,有 50% 概率不需要最低订单金额 35 | if (random_int(0, 100) < 50) { 36 | $minAmount = 0; 37 | } else { 38 | $minAmount = random_int(100, 1000); 39 | } 40 | } 41 | 42 | return [ 43 | 'name' => join(' ', $this->faker->words), // 随机生成名称 44 | 'code' => CouponCode::findAvailableCode(), // 调用优惠码生成方法 45 | 'type' => $type, 46 | 'value' => $value, 47 | 'total' => 1000, 48 | 'used' => 0, 49 | 'min_amount' => $minAmount, 50 | 'not_before' => null, 51 | 'not_after' => null, 52 | 'enabled' => true, 53 | ]; 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /database/factories/OrderItemFactory.php: -------------------------------------------------------------------------------- 1 | where('on_sale', true)->inRandomOrder()->first(); 17 | // 从该商品的 SKU 中随机取一条 18 | $sku = $product->skus()->inRandomOrder()->first(); 19 | 20 | return [ 21 | 'amount' => random_int(1, 5), // 购买数量随机 1 - 5 份 22 | 'price' => $sku->price, 23 | 'rating' => null, 24 | 'review' => null, 25 | 'reviewed_at' => null, 26 | 'product_id' => $product->id, 27 | 'product_sku_id' => $sku->id, 28 | ]; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /database/factories/ProductFactory.php: -------------------------------------------------------------------------------- 1 | faker->randomElement([ 15 | "https://cdn.learnku.com/uploads/images/201806/01/5320/7kG1HekGK6.jpg", 16 | "https://cdn.learnku.com/uploads/images/201806/01/5320/1B3n0ATKrn.jpg", 17 | "https://cdn.learnku.com/uploads/images/201806/01/5320/r3BNRe4zXG.jpg", 18 | "https://cdn.learnku.com/uploads/images/201806/01/5320/C0bVuKB2nt.jpg", 19 | "https://cdn.learnku.com/uploads/images/201806/01/5320/82Wf2sg8gM.jpg", 20 | "https://cdn.learnku.com/uploads/images/201806/01/5320/nIvBAQO5Pj.jpg", 21 | "https://cdn.learnku.com/uploads/images/201806/01/5320/XrtIwzrxj7.jpg", 22 | "https://cdn.learnku.com/uploads/images/201806/01/5320/uYEHCJ1oRp.jpg", 23 | "https://cdn.learnku.com/uploads/images/201806/01/5320/2JMRaFwRpo.jpg", 24 | "https://cdn.learnku.com/uploads/images/201806/01/5320/pa7DrV43Mw.jpg", 25 | ]); 26 | 27 | return [ 28 | 'title' => $this->faker->word, 29 | 'description' => $this->faker->sentence, 30 | 'image' => $image, 31 | 'on_sale' => true, 32 | 'rating' => $this->faker->numberBetween(0, 5), 33 | 'sold_count' => 0, 34 | 'review_count' => 0, 35 | 'price' => 0, 36 | ]; 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /database/factories/ProductSkuFactory.php: -------------------------------------------------------------------------------- 1 | $this->faker->word, 16 | 'description' => $this->faker->sentence, 17 | 'price' => $this->faker->randomNumber(4), 18 | 'stock' => $this->faker->randomNumber(5), 19 | ]; 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /database/factories/UserAddressFactory.php: -------------------------------------------------------------------------------- 1 | faker->randomElement($addresses); 22 | 23 | return [ 24 | 'province' => $address[0], 25 | 'city' => $address[1], 26 | 'district' => $address[2], 27 | 'address' => sprintf('第%d街道第%d号', $this->faker->randomNumber(2), $this->faker->randomNumber(3)), 28 | 'zip' => $this->faker->postcode, 29 | 'contact_name' => $this->faker->name, 30 | 'contact_phone' => $this->faker->phoneNumber, 31 | ]; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- 1 | $this->faker->name, 27 | 'email' => $this->faker->unique()->safeEmail, 28 | 'email_verified_at' => now(), 29 | 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password 30 | 'remember_token' => Str::random(10), 31 | ]; 32 | } 33 | 34 | /** 35 | * Indicate that the model's email address should be unverified. 36 | * 37 | * @return \Illuminate\Database\Eloquent\Factories\Factory 38 | */ 39 | public function unverified() 40 | { 41 | return $this->state(function (array $attributes) { 42 | return [ 43 | 'email_verified_at' => null, 44 | ]; 45 | }); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->string('name'); 19 | $table->string('email')->unique(); 20 | $table->timestamp('email_verified_at')->nullable(); 21 | $table->string('password'); 22 | $table->rememberToken(); 23 | $table->timestamps(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('users'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- 1 | string('email')->index(); 18 | $table->string('token'); 19 | $table->timestamp('created_at')->nullable(); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::dropIfExists('password_resets'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- 1 | id(); 18 | $table->string('uuid')->unique(); 19 | $table->text('connection'); 20 | $table->text('queue'); 21 | $table->longText('payload'); 22 | $table->longText('exception'); 23 | $table->timestamp('failed_at')->useCurrent(); 24 | }); 25 | } 26 | 27 | /** 28 | * Reverse the migrations. 29 | * 30 | * @return void 31 | */ 32 | public function down() 33 | { 34 | Schema::dropIfExists('failed_jobs'); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /database/migrations/2021_03_09_003616_create_user_addresses_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->unsignedBigInteger('user_id'); 19 | $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); 20 | $table->string('province'); 21 | $table->string('city'); 22 | $table->string('district'); 23 | $table->string('address'); 24 | $table->unsignedInteger('zip'); 25 | $table->string('contact_name'); 26 | $table->string('contact_phone'); 27 | $table->dateTime('last_used_at')->nullable(); 28 | $table->timestamps(); 29 | }); 30 | } 31 | 32 | /** 33 | * Reverse the migrations. 34 | * 35 | * @return void 36 | */ 37 | public function down() 38 | { 39 | Schema::dropIfExists('user_addresses'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /database/migrations/2021_03_09_033143_create_products_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('title'); 19 | $table->text('description'); 20 | $table->string('image'); 21 | $table->boolean('on_sale')->default(true); 22 | $table->float('rating')->default(5); 23 | $table->unsignedInteger('sold_count')->default(0); 24 | $table->unsignedInteger('review_count')->default(0); 25 | $table->decimal('price', 10, 2); 26 | $table->timestamps(); 27 | }); 28 | } 29 | 30 | /** 31 | * Reverse the migrations. 32 | * 33 | * @return void 34 | */ 35 | public function down() 36 | { 37 | Schema::dropIfExists('products'); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /database/migrations/2021_03_09_033147_create_product_skus_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('title'); 19 | $table->string('description'); 20 | $table->decimal('price', 10, 2); 21 | $table->unsignedInteger('stock'); 22 | $table->unsignedBigInteger('product_id'); 23 | $table->foreign('product_id')->references('id')->on('products')->onDelete('cascade'); 24 | $table->timestamps(); 25 | }); 26 | } 27 | 28 | /** 29 | * Reverse the migrations. 30 | * 31 | * @return void 32 | */ 33 | public function down() 34 | { 35 | Schema::dropIfExists('product_skus'); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /database/migrations/2021_03_09_082932_create_user_favorite_products_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->unsignedBigInteger('user_id'); 19 | $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); 20 | $table->unsignedBigInteger('product_id'); 21 | $table->foreign('product_id')->references('id')->on('products')->onDelete('cascade'); 22 | $table->timestamps(); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('user_favorite_products'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_03_09_085046_create_cart_items_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->unsignedBigInteger('user_id'); 19 | $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); 20 | $table->unsignedBigInteger('product_sku_id'); 21 | $table->foreign('product_sku_id')->references('id')->on('product_skus')->onDelete('cascade'); 22 | $table->unsignedInteger('amount'); 23 | }); 24 | } 25 | 26 | /** 27 | * Reverse the migrations. 28 | * 29 | * @return void 30 | */ 31 | public function down() 32 | { 33 | Schema::dropIfExists('cart_items'); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /database/migrations/2021_03_09_090014_create_orders_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('no')->unique(); 19 | $table->unsignedBigInteger('user_id'); 20 | $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); 21 | $table->text('address'); 22 | $table->decimal('total_amount', 10, 2); 23 | $table->text('remark')->nullable(); 24 | $table->dateTime('paid_at')->nullable(); 25 | $table->string('payment_method')->nullable(); 26 | $table->string('payment_no')->nullable(); 27 | $table->string('refund_status')->default(\App\Models\Order::REFUND_STATUS_PENDING); 28 | $table->string('refund_no')->unique()->nullable(); 29 | $table->boolean('closed')->default(false); 30 | $table->boolean('reviewed')->default(false); 31 | $table->string('ship_status')->default(\App\Models\Order::SHIP_STATUS_PENDING); 32 | $table->text('ship_data')->nullable(); 33 | $table->text('extra')->nullable(); 34 | $table->timestamps(); 35 | }); 36 | } 37 | 38 | /** 39 | * Reverse the migrations. 40 | * 41 | * @return void 42 | */ 43 | public function down() 44 | { 45 | Schema::dropIfExists('orders'); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /database/migrations/2021_03_09_090018_create_order_items_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->unsignedBigInteger('order_id'); 19 | $table->foreign('order_id')->references('id')->on('orders')->onDelete('cascade'); 20 | $table->unsignedBigInteger('product_id'); 21 | $table->foreign('product_id')->references('id')->on('products')->onDelete('cascade'); 22 | $table->unsignedBigInteger('product_sku_id'); 23 | $table->foreign('product_sku_id')->references('id')->on('product_skus')->onDelete('cascade'); 24 | $table->unsignedInteger('amount'); 25 | $table->decimal('price', 10, 2); 26 | $table->unsignedInteger('rating')->nullable(); 27 | $table->text('review')->nullable(); 28 | $table->timestamp('reviewed_at')->nullable(); 29 | }); 30 | } 31 | 32 | /** 33 | * Reverse the migrations. 34 | * 35 | * @return void 36 | */ 37 | public function down() 38 | { 39 | Schema::dropIfExists('order_items'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /database/migrations/2021_03_09_121326_create_coupon_codes_table.php: -------------------------------------------------------------------------------- 1 | bigIncrements('id'); 18 | $table->string('name'); 19 | $table->string('code')->unique(); 20 | $table->string('type'); 21 | $table->decimal('value'); 22 | $table->unsignedInteger('total'); 23 | $table->unsignedInteger('used')->default(0); 24 | $table->decimal('min_amount', 10, 2); 25 | $table->datetime('not_before')->nullable(); 26 | $table->datetime('not_after')->nullable(); 27 | $table->boolean('enabled'); 28 | $table->timestamps(); 29 | }); 30 | } 31 | 32 | /** 33 | * Reverse the migrations. 34 | * 35 | * @return void 36 | */ 37 | public function down() 38 | { 39 | Schema::dropIfExists('coupon_codes'); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /database/migrations/2021_03_09_121357_orders_add_coupon_code_id.php: -------------------------------------------------------------------------------- 1 | unsignedBigInteger('coupon_code_id')->nullable()->after('paid_at'); 13 | $table->foreign('coupon_code_id')->references('id')->on('coupon_codes')->onDelete('set null'); 14 | }); 15 | } 16 | 17 | public function down() 18 | { 19 | Schema::table('orders', function (Blueprint $table) { 20 | $table->dropForeign(['coupon_code_id']); 21 | $table->dropColumn('coupon_code_id'); 22 | }); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /database/seeders/CouponCodesSeeder.php: -------------------------------------------------------------------------------- 1 | count(20)->create(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(AdminTablesSeeder::class); 17 | $this->call(UsersSeeder::class); 18 | $this->call(UserAddressesSeeder::class); 19 | $this->call(ProductsSeeder::class); 20 | $this->call(CouponCodesSeeder::class); 21 | $this->call(OrdersSeeder::class); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /database/seeders/ProductsSeeder.php: -------------------------------------------------------------------------------- 1 | count(30)->create(); 13 | foreach ($products as $product) { 14 | // 创建 3 个 SKU,并且每个 SKU 的 `product_id` 字段都设为当前循环的商品 id 15 | $skus = \App\Models\ProductSku::factory()->count(3)->create(['product_id' => $product->id]); 16 | // 找出价格最低的 SKU 价格,把商品价格设置为该价格 17 | $product->update(['price' => $skus->min('price')]); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /database/seeders/UserAddressesSeeder.php: -------------------------------------------------------------------------------- 1 | each(function (User $user) { 14 | UserAddress::factory()->count(random_int(1, 3))->create(['user_id' => $user->id]); 15 | }); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /database/seeders/UsersSeeder.php: -------------------------------------------------------------------------------- 1 | count(10)->create(); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "dev": "npm run development", 5 | "development": "mix", 6 | "watch": "mix watch", 7 | "watch-poll": "mix watch -- --watch-options-poll=1000", 8 | "hot": "mix watch --hot", 9 | "prod": "npm run production", 10 | "production": "mix --production" 11 | }, 12 | "devDependencies": { 13 | "axios": "^0.21", 14 | "bootstrap": "^4.0.0", 15 | "jquery": "^3.2", 16 | "laravel-mix": "^6.0.6", 17 | "lodash": "^4.17.19", 18 | "popper.js": "^1.12", 19 | "postcss": "^8.1.14", 20 | "resolve-url-loader": "^2.3.1", 21 | "sass": "^1.20.1", 22 | "sass-loader": "^8.0.0", 23 | "vue": "^2.5.17", 24 | "vue-loader": "^15.9.5", 25 | "vue-template-compiler": "^2.6.10" 26 | }, 27 | "dependencies": { 28 | "@fortawesome/fontawesome-free": "^5.15.2", 29 | "china-area-data": "^5.0.1", 30 | "sweetalert": "^2.1.2" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | ./tests/Unit 10 | 11 | 12 | ./tests/Feature 13 | 14 | 15 | 16 | 17 | ./app 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews -Indexes 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Handle Authorization Header 9 | RewriteCond %{HTTP:Authorization} . 10 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 11 | 12 | # Redirect Trailing Slashes If Not A Folder... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_URI} (.+)/$ 15 | RewriteRule ^ %1 [L,R=301] 16 | 17 | # Send Requests To Front Controller... 18 | RewriteCond %{REQUEST_FILENAME} !-d 19 | RewriteCond %{REQUEST_FILENAME} !-f 20 | RewriteRule ^ index.php [L] 21 | 22 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-brands-400.woff2 -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-regular-400.woff2 -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.eot -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.ttf -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff -------------------------------------------------------------------------------- /public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/fonts/vendor/@fortawesome/fontawesome-free/webfa-solid-900.woff2 -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "/js/app.js": "/js/app.js?id=6a03102d1c955cb3bab4", 3 | "/css/app.css": "/css/app.css?id=9005b9ea60638d341704" 4 | } 5 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/laravel-admin-ext/quill/monokai-sublime.min.css: -------------------------------------------------------------------------------- 1 | .hljs{display:block;overflow-x:auto;padding:0.5em;background:#23241f}.hljs,.hljs-tag,.hljs-subst{color:#f8f8f2}.hljs-strong,.hljs-emphasis{color:#a8a8a2}.hljs-bullet,.hljs-quote,.hljs-number,.hljs-regexp,.hljs-literal,.hljs-link{color:#ae81ff}.hljs-code,.hljs-title,.hljs-section,.hljs-selector-class{color:#a6e22e}.hljs-strong{font-weight:bold}.hljs-emphasis{font-style:italic}.hljs-keyword,.hljs-selector-tag,.hljs-name,.hljs-attr{color:#f92672}.hljs-symbol,.hljs-attribute{color:#66d9ef}.hljs-params,.hljs-class .hljs-title{color:#f8f8f2}.hljs-string,.hljs-type,.hljs-built_in,.hljs-builtin-name,.hljs-selector-id,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-addition,.hljs-variable,.hljs-template-variable{color:#e6db74}.hljs-comment,.hljs-deletion,.hljs-meta{color:#75715e} -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/dist/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/dist/img/boxed-bg.jpg -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/dist/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/dist/img/boxed-bg.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/dist/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/dist/img/default-50x50.gif -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/dist/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/dist/img/icons.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/dist/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/dist/img/user2-160x160.jpg -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/alpha-horizontal.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/alpha.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/hue-horizontal.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/hue.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/colorpicker/img/saturation.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/aero.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, aero 2 | ----------------------------------- */ 3 | .icheckbox_flat-aero, 4 | .iradio_flat-aero { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(aero.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-aero { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-aero.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-aero.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-aero.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-aero { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-aero.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-aero.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-aero.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-aero, 51 | .iradio_flat-aero { 52 | background-image: url(aero@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/aero.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/blue.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, blue 2 | ----------------------------------- */ 3 | .icheckbox_flat-blue, 4 | .iradio_flat-blue { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(blue.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-blue { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-blue.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-blue.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-blue.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-blue { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-blue.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-blue.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-blue.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-blue, 51 | .iradio_flat-blue { 52 | background-image: url(blue@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/blue.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/flat.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin flat skin, black 2 | ----------------------------------- */ 3 | .icheckbox_flat, 4 | .iradio_flat { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(flat.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat, 51 | .iradio_flat { 52 | background-image: url(flat@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/flat.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/green.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, green 2 | ----------------------------------- */ 3 | .icheckbox_flat-green, 4 | .iradio_flat-green { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(green.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-green { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-green.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-green.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-green.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-green { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-green.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-green.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-green.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-green, 51 | .iradio_flat-green { 52 | background-image: url(green@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/green.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/grey.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, grey 2 | ----------------------------------- */ 3 | .icheckbox_flat-grey, 4 | .iradio_flat-grey { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(grey.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-grey { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-grey.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-grey.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-grey.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-grey { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-grey.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-grey.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-grey.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-grey, 51 | .iradio_flat-grey { 52 | background-image: url(grey@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/grey.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/orange.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, orange 2 | ----------------------------------- */ 3 | .icheckbox_flat-orange, 4 | .iradio_flat-orange { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(orange.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-orange { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-orange.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-orange.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-orange.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-orange { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-orange.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-orange.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-orange.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-orange, 51 | .iradio_flat-orange { 52 | background-image: url(orange@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/orange.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/pink.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, pink 2 | ----------------------------------- */ 3 | .icheckbox_flat-pink, 4 | .iradio_flat-pink { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(pink.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-pink { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-pink.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-pink.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-pink.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-pink { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-pink.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-pink.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-pink.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-pink, 51 | .iradio_flat-pink { 52 | background-image: url(pink@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/pink.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/purple.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, purple 2 | ----------------------------------- */ 3 | .icheckbox_flat-purple, 4 | .iradio_flat-purple { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(purple.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-purple { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-purple.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-purple.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-purple.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-purple { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-purple.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-purple.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-purple.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-purple, 51 | .iradio_flat-purple { 52 | background-image: url(purple@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/purple.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/red.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, red 2 | ----------------------------------- */ 3 | .icheckbox_flat-red, 4 | .iradio_flat-red { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(red.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-red { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-red.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-red.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-red.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-red { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-red.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-red.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-red.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-red, 51 | .iradio_flat-red { 52 | background-image: url(red@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/red.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/yellow.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Flat skin, yellow 2 | ----------------------------------- */ 3 | .icheckbox_flat-yellow, 4 | .iradio_flat-yellow { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 20px; 11 | height: 20px; 12 | background: url(yellow.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_flat-yellow { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_flat-yellow.checked { 21 | background-position: -22px 0; 22 | } 23 | .icheckbox_flat-yellow.disabled { 24 | background-position: -44px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_flat-yellow.checked.disabled { 28 | background-position: -66px 0; 29 | } 30 | 31 | .iradio_flat-yellow { 32 | background-position: -88px 0; 33 | } 34 | .iradio_flat-yellow.checked { 35 | background-position: -110px 0; 36 | } 37 | .iradio_flat-yellow.disabled { 38 | background-position: -132px 0; 39 | cursor: default; 40 | } 41 | .iradio_flat-yellow.checked.disabled { 42 | background-position: -154px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_flat-yellow, 51 | .iradio_flat-yellow { 52 | background-image: url(yellow@2x.png); 53 | -webkit-background-size: 176px 22px; 54 | background-size: 176px 22px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/futurico/futurico.css: -------------------------------------------------------------------------------- 1 | /* iCheck plugin Futurico skin 2 | ----------------------------------- */ 3 | .icheckbox_futurico, 4 | .iradio_futurico { 5 | display: inline-block; 6 | *display: inline; 7 | vertical-align: middle; 8 | margin: 0; 9 | padding: 0; 10 | width: 16px; 11 | height: 17px; 12 | background: url(futurico.png) no-repeat; 13 | border: none; 14 | cursor: pointer; 15 | } 16 | 17 | .icheckbox_futurico { 18 | background-position: 0 0; 19 | } 20 | .icheckbox_futurico.checked { 21 | background-position: -18px 0; 22 | } 23 | .icheckbox_futurico.disabled { 24 | background-position: -36px 0; 25 | cursor: default; 26 | } 27 | .icheckbox_futurico.checked.disabled { 28 | background-position: -54px 0; 29 | } 30 | 31 | .iradio_futurico { 32 | background-position: -72px 0; 33 | } 34 | .iradio_futurico.checked { 35 | background-position: -90px 0; 36 | } 37 | .iradio_futurico.disabled { 38 | background-position: -108px 0; 39 | cursor: default; 40 | } 41 | .iradio_futurico.checked.disabled { 42 | background-position: -126px 0; 43 | } 44 | 45 | /* Retina support */ 46 | @media only screen and (-webkit-min-device-pixel-ratio: 1.5), 47 | only screen and (-moz-min-device-pixel-ratio: 1.5), 48 | only screen and (-o-min-device-pixel-ratio: 3/2), 49 | only screen and (min-device-pixel-ratio: 1.5) { 50 | .icheckbox_futurico, 51 | .iradio_futurico { 52 | background-image: url(futurico@2x.png); 53 | -webkit-background-size: 144px 19px; 54 | background-size: 144px 19px; 55 | } 56 | } -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/line/line.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/green.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/red.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/aero.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/blue.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/green.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/grey.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/orange.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/pink.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/purple.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/red.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/square.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/yellow.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/ionslider/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/ionslider/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/ionslider/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/AdminLTE/plugins/ionslider/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/ar.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ar",[],function(){return{errorLoading:function(){return"لا يمكن تحميل النتائج"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="الرجاء حذف "+t+" عناصر";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="الرجاء إضافة "+t+" عناصر";return n},loadingMore:function(){return"جاري تحميل نتائج إضافية..."},maximumSelected:function(e){var t="تستطيع إختيار "+e.maximum+" بنود فقط";return t},noResults:function(){return"لم يتم العثور على أي نتائج"},searching:function(){return"جاري البحث…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/az.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/az",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return t+" simvol silin"},inputTooShort:function(e){var t=e.minimum-e.input.length;return t+" simvol daxil edin"},loadingMore:function(){return"Daha çox nəticə yüklənir…"},maximumSelected:function(e){return"Sadəcə "+e.maximum+" element seçə bilərsiniz"},noResults:function(){return"Nəticə tapılmadı"},searching:function(){return"Axtarılır…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/bg.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/bg",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Моля въведете с "+t+" по-малко символ";return t>1&&(n+="a"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Моля въведете още "+t+" символ";return t>1&&(n+="a"),n},loadingMore:function(){return"Зареждат се още…"},maximumSelected:function(e){var t="Можете да направите до "+e.maximum+" ";return e.maximum>1?t+="избора":t+="избор",t},noResults:function(){return"Няма намерени съвпадения"},searching:function(){return"Търсене…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/ca.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ca",[],function(){return{errorLoading:function(){return"La càrrega ha fallat"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Si us plau, elimina "+t+" car";return t==1?n+="àcter":n+="àcters",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Si us plau, introdueix "+t+" car";return t==1?n+="àcter":n+="àcters",n},loadingMore:function(){return"Carregant més resultats…"},maximumSelected:function(e){var t="Només es pot seleccionar "+e.maximum+" element";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No s'han trobat resultats"},searching:function(){return"Cercant…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/cs.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/cs",[],function(){function e(e,t){switch(e){case 2:return t?"dva":"dvě";case 3:return"tři";case 4:return"čtyři"}return""}return{errorLoading:function(){return"Výsledky nemohly být načteny."},inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím zadejte o jeden znak méně":n<=4?"Prosím zadejte o "+e(n,!0)+" znaky méně":"Prosím zadejte o "+n+" znaků méně"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím zadejte ještě jeden znak":n<=4?"Prosím zadejte ještě další "+e(n,!0)+" znaky":"Prosím zadejte ještě dalších "+n+" znaků"},loadingMore:function(){return"Načítají se další výsledky…"},maximumSelected:function(t){var n=t.maximum;return n==1?"Můžete zvolit jen jednu položku":n<=4?"Můžete zvolit maximálně "+e(n,!1)+" položky":"Můžete zvolit maximálně "+n+" položek"},noResults:function(){return"Nenalezeny žádné položky"},searching:function(){return"Vyhledávání…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/da.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/da",[],function(){return{errorLoading:function(){return"Resultaterne kunne ikke indlæses."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Angiv venligst "+t+" tegn mindre";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Angiv venligst "+t+" tegn mere";return n},loadingMore:function(){return"Indlæser flere resultater…"},maximumSelected:function(e){var t="Du kan kun vælge "+e.maximum+" emne";return e.maximum!=1&&(t+="r"),t},noResults:function(){return"Ingen resultater fundet"},searching:function(){return"Søger…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/de.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/de",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Bitte "+t+" Zeichen weniger eingeben"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Bitte "+t+" Zeichen mehr eingeben"},loadingMore:function(){return"Lade mehr Ergebnisse…"},maximumSelected:function(e){var t="Sie können nur "+e.maximum+" Eintr";return e.maximum===1?t+="ag":t+="äge",t+=" auswählen",t},noResults:function(){return"Keine Übereinstimmungen gefunden"},searching:function(){return"Suche…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/el.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/el",[],function(){return{errorLoading:function(){return"Τα αποτελέσματα δεν μπόρεσαν να φορτώσουν."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Παρακαλώ διαγράψτε "+t+" χαρακτήρ";return t==1&&(n+="α"),t!=1&&(n+="ες"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Παρακαλώ συμπληρώστε "+t+" ή περισσότερους χαρακτήρες";return n},loadingMore:function(){return"Φόρτωση περισσότερων αποτελεσμάτων…"},maximumSelected:function(e){var t="Μπορείτε να επιλέξετε μόνο "+e.maximum+" επιλογ";return e.maximum==1&&(t+="ή"),e.maximum!=1&&(t+="ές"),t},noResults:function(){return"Δεν βρέθηκαν αποτελέσματα"},searching:function(){return"Αναζήτηση…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/en.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/en",[],function(){return{errorLoading:function(){return"The results could not be loaded."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Please delete "+t+" character";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Please enter "+t+" or more characters";return n},loadingMore:function(){return"Loading more results…"},maximumSelected:function(e){var t="You can only select "+e.maximum+" item";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No results found"},searching:function(){return"Searching…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/es.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/es",[],function(){return{errorLoading:function(){return"La carga falló"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor, elimine "+t+" car";return t==1?n+="ácter":n+="acteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Por favor, introduzca "+t+" car";return t==1?n+="ácter":n+="acteres",n},loadingMore:function(){return"Cargando más resultados…"},maximumSelected:function(e){var t="Sólo puede seleccionar "+e.maximum+" elemento";return e.maximum!=1&&(t+="s"),t},noResults:function(){return"No se encontraron resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/et.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/et",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" vähem",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Sisesta "+t+" täht";return t!=1&&(n+="e"),n+=" rohkem",n},loadingMore:function(){return"Laen tulemusi…"},maximumSelected:function(e){var t="Saad vaid "+e.maximum+" tulemus";return e.maximum==1?t+="e":t+="t",t+=" valida",t},noResults:function(){return"Tulemused puuduvad"},searching:function(){return"Otsin…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/eu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/eu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gutxiago",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Idatzi ";return t==1?n+="karaktere bat":n+=t+" karaktere",n+=" gehiago",n},loadingMore:function(){return"Emaitza gehiago kargatzen…"},maximumSelected:function(e){return e.maximum===1?"Elementu bakarra hauta dezakezu":e.maximum+" elementu hauta ditzakezu soilik"},noResults:function(){return"Ez da bat datorrenik aurkitu"},searching:function(){return"Bilatzen…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/fa.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fa",[],function(){return{errorLoading:function(){return"امکان بارگذاری نتایج وجود ندارد."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="لطفاً "+t+" کاراکتر را حذف نمایید";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="لطفاً تعداد "+t+" کاراکتر یا بیشتر وارد نمایید";return n},loadingMore:function(){return"در حال بارگذاری نتایج بیشتر..."},maximumSelected:function(e){var t="شما تنها می‌توانید "+e.maximum+" آیتم را انتخاب نمایید";return t},noResults:function(){return"هیچ نتیجه‌ای یافت نشد"},searching:function(){return"در حال جستجو..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/fi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Ole hyvä ja anna "+t+" merkkiä vähemmän"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Ole hyvä ja anna "+t+" merkkiä lisää"},loadingMore:function(){return"Ladataan lisää tuloksia…"},maximumSelected:function(e){return"Voit valita ainoastaan "+e.maximum+" kpl"},noResults:function(){return"Ei tuloksia"},searching:function(){}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/fr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/fr",[],function(){return{errorLoading:function(){return"Les résultats ne peuvent pas être chargés."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Supprimez "+t+" caractère";return t!==1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Saisissez "+t+" caractère";return t!==1&&(n+="s"),n},loadingMore:function(){return"Chargement de résultats supplémentaires…"},maximumSelected:function(e){var t="Vous pouvez seulement sélectionner "+e.maximum+" élément";return e.maximum!==1&&(t+="s"),t},noResults:function(){return"Aucun résultat trouvé"},searching:function(){return"Recherche en cours…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/gl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/gl",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Elimine ";return t===1?n+="un carácter":n+=t+" caracteres",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Engada ";return t===1?n+="un carácter":n+=t+" caracteres",n},loadingMore:function(){return"Cargando máis resultados…"},maximumSelected:function(e){var t="Só pode ";return e.maximum===1?t+="un elemento":t+=e.maximum+" elementos",t},noResults:function(){return"Non se atoparon resultados"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/he.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/he",[],function(){return{errorLoading:function(){return"שגיאה בטעינת התוצאות"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="נא למחוק ";return t===1?n+="תו אחד":n+=t+" תווים",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="נא להכניס ";return t===1?n+="תו אחד":n+=t+" תווים",n+=" או יותר",n},loadingMore:function(){return"טוען תוצאות נוספות…"},maximumSelected:function(e){var t="באפשרותך לבחור עד ";return e.maximum===1?t+="פריט אחד":t+=e.maximum+" פריטים",t},noResults:function(){return"לא נמצאו תוצאות"},searching:function(){return"מחפש…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/hi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hi",[],function(){return{errorLoading:function(){return"परिणामों को लोड नहीं किया जा सका।"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" अक्षर को हटा दें";return t>1&&(n=t+" अक्षरों को हटा दें "),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="कृपया "+t+" या अधिक अक्षर दर्ज करें";return n},loadingMore:function(){return"अधिक परिणाम लोड हो रहे है..."},maximumSelected:function(e){var t="आप केवल "+e.maximum+" आइटम का चयन कर सकते हैं";return t},noResults:function(){return"कोई परिणाम नहीं मिला"},searching:function(){return"खोज रहा है..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/hr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hr",[],function(){function e(e){var t=" "+e+" znak";return e%10<5&&e%10>0&&(e%100<5||e%100>19)?e%10>1&&(t+="a"):t+="ova",t}return{errorLoading:function(){return"Preuzimanje nije uspjelo."},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Unesite "+e(n)},inputTooShort:function(t){var n=t.minimum-t.input.length;return"Unesite još "+e(n)},loadingMore:function(){return"Učitavanje rezultata…"},maximumSelected:function(e){return"Maksimalan broj odabranih stavki je "+e.maximum},noResults:function(){return"Nema rezultata"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/hu.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/hu",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum;return"Túl hosszú. "+t+" karakterrel több, mint kellene."},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Túl rövid. Még "+t+" karakter hiányzik."},loadingMore:function(){return"Töltés…"},maximumSelected:function(e){return"Csak "+e.maximum+" elemet lehet kiválasztani."},noResults:function(){return"Nincs találat."},searching:function(){return"Keresés…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/id.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/id",[],function(){return{errorLoading:function(){return"Data tidak boleh diambil."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Hapuskan "+t+" huruf"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Masukkan "+t+" huruf lagi"},loadingMore:function(){return"Mengambil data…"},maximumSelected:function(e){return"Anda hanya dapat memilih "+e.maximum+" pilihan"},noResults:function(){return"Tidak ada data yang sesuai"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/is.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/is",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vinsamlegast styttið texta um "+t+" staf";return t<=1?n:n+"i"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vinsamlegast skrifið "+t+" staf";return t>1&&(n+="i"),n+=" í viðbót",n},loadingMore:function(){return"Sæki fleiri niðurstöður…"},maximumSelected:function(e){return"Þú getur aðeins valið "+e.maximum+" atriði"},noResults:function(){return"Ekkert fannst"},searching:function(){return"Leita…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/it.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/it",[],function(){return{errorLoading:function(){return"I risultati non possono essere caricati."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Per favore cancella "+t+" caratter";return t!==1?n+="i":n+="e",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Per favore inserisci "+t+" o più caratteri";return n},loadingMore:function(){return"Caricando più risultati…"},maximumSelected:function(e){var t="Puoi selezionare solo "+e.maximum+" element";return e.maximum!==1?t+="i":t+="o",t},noResults:function(){return"Nessun risultato trovato"},searching:function(){return"Sto cercando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/ja.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ja",[],function(){return{errorLoading:function(){return"結果が読み込まれませんでした"},inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" 文字を削除してください";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="少なくとも "+t+" 文字を入力してください";return n},loadingMore:function(){return"読み込み中…"},maximumSelected:function(e){var t=e.maximum+" 件しか選択できません";return t},noResults:function(){return"対象が見つかりません"},searching:function(){return"検索しています…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/km.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/km",[],function(){return{errorLoading:function(){return"មិនអាចទាញយកទិន្នន័យ"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="សូមលុបចេញ "+t+" អក្សរ";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="សូមបញ្ចូល"+t+" អក្សរ រឺ ច្រើនជាងនេះ";return n},loadingMore:function(){return"កំពុងទាញយកទិន្នន័យបន្ថែម..."},maximumSelected:function(e){var t="អ្នកអាចជ្រើសរើសបានតែ "+e.maximum+" ជម្រើសប៉ុណ្ណោះ";return t},noResults:function(){return"មិនមានលទ្ធផល"},searching:function(){return"កំពុងស្វែងរក..."}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/ko.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ko",[],function(){return{errorLoading:function(){return"결과를 불러올 수 없습니다."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="너무 깁니다. "+t+" 글자 지워주세요.";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="너무 짧습니다. "+t+" 글자 더 입력해주세요.";return n},loadingMore:function(){return"불러오는 중…"},maximumSelected:function(e){var t="최대 "+e.maximum+"개까지만 선택 가능합니다.";return t},noResults:function(){return"결과가 없습니다."},searching:function(){return"검색 중…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/lt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lt",[],function(){function e(e,t,n,r){return e%10===1&&(e%100<11||e%100>19)?t:e%10>=2&&e%10<=9&&(e%100<11||e%100>19)?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Pašalinkite "+n+" simbol";return r+=e(n,"į","ius","ių"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Įrašykite dar "+n+" simbol";return r+=e(n,"į","ius","ių"),r},loadingMore:function(){return"Kraunama daugiau rezultatų…"},maximumSelected:function(t){var n="Jūs galite pasirinkti tik "+t.maximum+" element";return n+=e(t.maximum,"ą","us","ų"),n},noResults:function(){return"Atitikmenų nerasta"},searching:function(){return"Ieškoma…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/lv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/lv",[],function(){function e(e,t,n,r){return e===11?t:e%10===1?n:r}return{inputTooLong:function(t){var n=t.input.length-t.maximum,r="Lūdzu ievadiet par "+n;return r+=" simbol"+e(n,"iem","u","iem"),r+" mazāk"},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Lūdzu ievadiet vēl "+n;return r+=" simbol"+e(n,"us","u","us"),r},loadingMore:function(){return"Datu ielāde…"},maximumSelected:function(t){var n="Jūs varat izvēlēties ne vairāk kā "+t.maximum;return n+=" element"+e(t.maximum,"us","u","us"),n},noResults:function(){return"Sakritību nav"},searching:function(){return"Meklēšana…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/mk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/mk",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Ве молиме внесете "+e.maximum+" помалку карактер";return e.maximum!==1&&(n+="и"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Ве молиме внесете уште "+e.maximum+" карактер";return e.maximum!==1&&(n+="и"),n},loadingMore:function(){return"Вчитување резултати…"},maximumSelected:function(e){var t="Можете да изберете само "+e.maximum+" ставк";return e.maximum===1?t+="а":t+="и",t},noResults:function(){return"Нема пронајдено совпаѓања"},searching:function(){return"Пребарување…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/ms.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ms",[],function(){return{errorLoading:function(){return"Keputusan tidak berjaya dimuatkan."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Sila hapuskan "+t+" aksara"},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Sila masukkan "+t+" atau lebih aksara"},loadingMore:function(){return"Sedang memuatkan keputusan…"},maximumSelected:function(e){return"Anda hanya boleh memilih "+e.maximum+" pilihan"},noResults:function(){return"Tiada padanan yang ditemui"},searching:function(){return"Mencari…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/nb.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nb",[],function(){return{errorLoading:function(){return"Kunne ikke hente resultater."},inputTooLong:function(e){var t=e.input.length-e.maximum;return"Vennligst fjern "+t+" tegn"},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vennligst skriv inn ";return t>1?n+=" flere tegn":n+=" tegn til",n},loadingMore:function(){return"Laster flere resultater…"},maximumSelected:function(e){return"Du kan velge maks "+e.maximum+" elementer"},noResults:function(){return"Ingen treff"},searching:function(){return"Søker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/nl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/nl",[],function(){return{errorLoading:function(){return"De resultaten konden niet worden geladen."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Gelieve "+t+" karakters te verwijderen";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Gelieve "+t+" of meer karakters in te voeren";return n},loadingMore:function(){return"Meer resultaten laden…"},maximumSelected:function(e){var t=e.maximum==1?"kan":"kunnen",n="Er "+t+" maar "+e.maximum+" item";return e.maximum!=1&&(n+="s"),n+=" worden geselecteerd",n},noResults:function(){return"Geen resultaten gevonden…"},searching:function(){return"Zoeken…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/pl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pl",[],function(){var e=["znak","znaki","znaków"],t=["element","elementy","elementów"],n=function(t,n){if(t===1)return n[0];if(t>1&&t<=4)return n[1];if(t>=5)return n[2]};return{errorLoading:function(){return"Nie można załadować wyników."},inputTooLong:function(t){var r=t.input.length-t.maximum;return"Usuń "+r+" "+n(r,e)},inputTooShort:function(t){var r=t.minimum-t.input.length;return"Podaj przynajmniej "+r+" "+n(r,e)},loadingMore:function(){return"Trwa ładowanie…"},maximumSelected:function(e){return"Możesz zaznaczyć tylko "+e.maximum+" "+n(e.maximum,t)},noResults:function(){return"Brak wyników"},searching:function(){return"Trwa wyszukiwanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/pt-BR.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt-BR",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Apague "+t+" caracter";return t!=1&&(n+="es"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Digite "+t+" ou mais caracteres";return n},loadingMore:function(){return"Carregando mais resultados…"},maximumSelected:function(e){var t="Você só pode selecionar "+e.maximum+" ite";return e.maximum==1?t+="m":t+="ns",t},noResults:function(){return"Nenhum resultado encontrado"},searching:function(){return"Buscando…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/pt.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/pt",[],function(){return{errorLoading:function(){return"Os resultados não puderam ser carregados."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Por favor apague "+t+" ";return n+=t!=1?"caracteres":"carácter",n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Introduza "+t+" ou mais caracteres";return n},loadingMore:function(){return"A carregar mais resultados…"},maximumSelected:function(e){var t="Apenas pode seleccionar "+e.maximum+" ";return t+=e.maximum!=1?"itens":"item",t},noResults:function(){return"Sem resultados"},searching:function(){return"A procurar…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/ro.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ro",[],function(){return{errorLoading:function(){return"Rezultatele nu au putut fi incărcate."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vă rugăm să ștergeți"+t+" caracter";return t!==1&&(n+="e"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vă rugăm să introduceți "+t+"sau mai multe caractere";return n},loadingMore:function(){return"Se încarcă mai multe rezultate…"},maximumSelected:function(e){var t="Aveți voie să selectați cel mult "+e.maximum;return t+=" element",e.maximum!==1&&(t+="e"),t},noResults:function(){return"Nu au fost găsite rezultate"},searching:function(){return"Căutare…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/ru.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/ru",[],function(){function e(e,t,n,r){return e%10<5&&e%10>0&&e%100<5||e%100>20?e%10>1?n:t:r}return{errorLoading:function(){return"Невозможно загрузить результаты"},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Пожалуйста, введите на "+n+" символ";return r+=e(n,"","a","ов"),r+=" меньше",r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Пожалуйста, введите еще хотя бы "+n+" символ";return r+=e(n,"","a","ов"),r},loadingMore:function(){return"Загрузка данных…"},maximumSelected:function(t){var n="Вы можете выбрать не более "+t.maximum+" элемент";return n+=e(t.maximum,"","a","ов"),n},noResults:function(){return"Совпадений не найдено"},searching:function(){return"Поиск…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/sk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sk",[],function(){var e={2:function(e){return e?"dva":"dve"},3:function(){return"tri"},4:function(){return"štyri"}};return{inputTooLong:function(t){var n=t.input.length-t.maximum;return n==1?"Prosím, zadajte o jeden znak menej":n>=2&&n<=4?"Prosím, zadajte o "+e[n](!0)+" znaky menej":"Prosím, zadajte o "+n+" znakov menej"},inputTooShort:function(t){var n=t.minimum-t.input.length;return n==1?"Prosím, zadajte ešte jeden znak":n<=4?"Prosím, zadajte ešte ďalšie "+e[n](!0)+" znaky":"Prosím, zadajte ešte ďalších "+n+" znakov"},loadingMore:function(){return"Loading more results…"},maximumSelected:function(t){return t.maximum==1?"Môžete zvoliť len jednu položku":t.maximum>=2&&t.maximum<=4?"Môžete zvoliť najviac "+e[t.maximum](!1)+" položky":"Môžete zvoliť najviac "+t.maximum+" položiek"},noResults:function(){return"Nenašli sa žiadne položky"},searching:function(){return"Vyhľadávanie…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr-Cyrl",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Преузимање није успело."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Обришите "+n+" симбол";return r+=e(n,"","а","а"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Укуцајте бар још "+n+" симбол";return r+=e(n,"","а","а"),r},loadingMore:function(){return"Преузимање још резултата…"},maximumSelected:function(t){var n="Можете изабрати само "+t.maximum+" ставк";return n+=e(t.maximum,"у","е","и"),n},noResults:function(){return"Ништа није пронађено"},searching:function(){return"Претрага…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/sr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sr",[],function(){function e(e,t,n,r){return e%10==1&&e%100!=11?t:e%10>=2&&e%10<=4&&(e%100<12||e%100>14)?n:r}return{errorLoading:function(){return"Preuzimanje nije uspelo."},inputTooLong:function(t){var n=t.input.length-t.maximum,r="Obrišite "+n+" simbol";return r+=e(n,"","a","a"),r},inputTooShort:function(t){var n=t.minimum-t.input.length,r="Ukucajte bar još "+n+" simbol";return r+=e(n,"","a","a"),r},loadingMore:function(){return"Preuzimanje još rezultata…"},maximumSelected:function(t){var n="Možete izabrati samo "+t.maximum+" stavk";return n+=e(t.maximum,"u","e","i"),n},noResults:function(){return"Ništa nije pronađeno"},searching:function(){return"Pretraga…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/sv.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/sv",[],function(){return{errorLoading:function(){return"Resultat kunde inte laddas."},inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vänligen sudda ut "+t+" tecken";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vänligen skriv in "+t+" eller fler tecken";return n},loadingMore:function(){return"Laddar fler resultat…"},maximumSelected:function(e){var t="Du kan max välja "+e.maximum+" element";return t},noResults:function(){return"Inga träffar"},searching:function(){return"Söker…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/th.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/th",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="โปรดลบออก "+t+" ตัวอักษร";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="โปรดพิมพ์เพิ่มอีก "+t+" ตัวอักษร";return n},loadingMore:function(){return"กำลังค้นข้อมูลเพิ่ม…"},maximumSelected:function(e){var t="คุณสามารถเลือกได้ไม่เกิน "+e.maximum+" รายการ";return t},noResults:function(){return"ไม่พบข้อมูล"},searching:function(){return"กำลังค้นข้อมูล…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/tr.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/tr",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n=t+" karakter daha girmelisiniz";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="En az "+t+" karakter daha girmelisiniz";return n},loadingMore:function(){return"Daha fazla…"},maximumSelected:function(e){var t="Sadece "+e.maximum+" seçim yapabilirsiniz";return t},noResults:function(){return"Sonuç bulunamadı"},searching:function(){return"Aranıyor…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/uk.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/uk",[],function(){function e(e,t,n,r){return e%100>10&&e%100<15?r:e%10===1?t:e%10>1&&e%10<5?n:r}return{errorLoading:function(){return"Неможливо завантажити результати"},inputTooLong:function(t){var n=t.input.length-t.maximum;return"Будь ласка, видаліть "+n+" "+e(t.maximum,"літеру","літери","літер")},inputTooShort:function(e){var t=e.minimum-e.input.length;return"Будь ласка, введіть "+t+" або більше літер"},loadingMore:function(){return"Завантаження інших результатів…"},maximumSelected:function(t){return"Ви можете вибрати лише "+t.maximum+" "+e(t.maximum,"пункт","пункти","пунктів")},noResults:function(){return"Нічого не знайдено"},searching:function(){return"Пошук…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/vi.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/vi",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="Vui lòng nhập ít hơn "+t+" ký tự";return t!=1&&(n+="s"),n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="Vui lòng nhập nhiều hơn "+t+' ký tự"';return n},loadingMore:function(){return"Đang lấy thêm kết quả…"},maximumSelected:function(e){var t="Chỉ có thể chọn được "+e.maximum+" lựa chọn";return t},noResults:function(){return"Không tìm thấy kết quả"},searching:function(){return"Đang tìm…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/zh-CN.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-CN",[],function(){return{errorLoading:function(){return"无法载入结果。"},inputTooLong:function(e){var t=e.input.length-e.maximum,n="请删除"+t+"个字符";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="请再输入至少"+t+"个字符";return n},loadingMore:function(){return"载入更多结果…"},maximumSelected:function(e){var t="最多只能选择"+e.maximum+"个项目";return t},noResults:function(){return"未找到结果"},searching:function(){return"搜索中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/AdminLTE/plugins/select2/i18n/zh-TW.js: -------------------------------------------------------------------------------- 1 | /*! Select2 4.0.3 | https://github.com/select2/select2/blob/master/LICENSE.md */ 2 | 3 | (function(){if(jQuery&&jQuery.fn&&jQuery.fn.select2&&jQuery.fn.select2.amd)var e=jQuery.fn.select2.amd;return e.define("select2/i18n/zh-TW",[],function(){return{inputTooLong:function(e){var t=e.input.length-e.maximum,n="請刪掉"+t+"個字元";return n},inputTooShort:function(e){var t=e.minimum-e.input.length,n="請再輸入"+t+"個字元";return n},loadingMore:function(){return"載入中…"},maximumSelected:function(e){var t="你只能選擇最多"+e.maximum+"項";return t},noResults:function(){return"沒有找到相符的項目"},searching:function(){return"搜尋中…"}}}),{define:e.define,require:e.require}})(); -------------------------------------------------------------------------------- /public/vendor/laravel-admin/bootstrap-fileinput/img/loading-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/bootstrap-fileinput/img/loading-sm.gif -------------------------------------------------------------------------------- /public/vendor/laravel-admin/bootstrap-fileinput/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/public/vendor/laravel-admin/bootstrap-fileinput/img/loading.gif -------------------------------------------------------------------------------- /public/vendor/laravel-admin/bootstrap-fileinput/js/plugins/canvas-to-blob.min.js: -------------------------------------------------------------------------------- 1 | !function(a){"use strict";var b=a.HTMLCanvasElement&&a.HTMLCanvasElement.prototype,c=a.Blob&&function(){try{return Boolean(new Blob)}catch(a){return!1}}(),d=c&&a.Uint8Array&&function(){try{return 100===new Blob([new Uint8Array(100)]).size}catch(a){return!1}}(),e=a.BlobBuilder||a.WebKitBlobBuilder||a.MozBlobBuilder||a.MSBlobBuilder,f=(c||e)&&a.atob&&a.ArrayBuffer&&a.Uint8Array&&function(a){var b,f,g,h,i,j;for(b=a.split(",")[0].indexOf("base64")>=0?atob(a.split(",")[1]):decodeURIComponent(a.split(",")[1]),f=new ArrayBuffer(b.length),g=new Uint8Array(f),h=0;h button { display: block; position: relative; cursor: pointer; float: left; width: 25px; height: 20px; margin: 5px 0; padding: 0; text-indent: 100%; white-space: nowrap; overflow: hidden; border: 0; background: transparent; font-size: 12px; line-height: 1; text-align: center; font-weight: bold; } 24 | .dd-item > button:before { content: '+'; display: block; position: absolute; width: 100%; text-align: center; text-indent: 0; } 25 | .dd-item > button[data-action="collapse"]:before { content: '-'; } 26 | 27 | .dd-placeholder { margin: 5px 0; padding: 0; min-height: 30px; background: #f2fbff; border: 1px dashed #b6bcbf; box-sizing: border-box; -moz-box-sizing: border-box; } 28 | 29 | .dd-dragel { position: absolute; pointer-events: none; z-index: 9999; } 30 | .dd-dragel > .dd-item .dd-handle { margin-top: 0; } 31 | .dd-dragel .dd-handle { 32 | -webkit-box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1); 33 | box-shadow: 2px 4px 6px 0 rgba(0,0,0,.1); 34 | } -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/summerblue/laravel-shop/c36922b53cb23701aab12326c2e72d0a8518a139/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | /** 2 | * First we will load all of this project's JavaScript dependencies which 3 | * includes Vue and other libraries. It is a great starting point when 4 | * building robust, powerful web applications using Vue and Laravel. 5 | */ 6 | 7 | require('./bootstrap'); 8 | 9 | window.Vue = require('vue').default; 10 | 11 | /** 12 | * The following block of code may be used to automatically register your 13 | * Vue components. It will recursively scan this directory for the Vue 14 | * components and automatically register them with their "basename". 15 | * 16 | * Eg. ./components/ExampleComponent.vue -> 17 | */ 18 | 19 | // const files = require.context('./', true, /\.vue$/i) 20 | // files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key).default)) 21 | 22 | // Vue.component('example-component', require('./components/ExampleComponent.vue').default); 23 | 24 | // 此处需在引入 Vue 之后引入 25 | require('./components/SelectDistrict'); 26 | require('./components/UserAddressesCreateAndEdit'); 27 | 28 | /** 29 | * Next, we will create a fresh Vue application instance and attach it to 30 | * the page. Then, you may begin adding components to this application 31 | * or customize the JavaScript scaffolding to fit your unique needs. 32 | */ 33 | 34 | const app = new Vue({ 35 | el: '#app', 36 | }); 37 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | require('sweetalert'); 2 | 3 | window._ = require('lodash'); 4 | 5 | /** 6 | * We'll load jQuery and the Bootstrap jQuery plugin which provides support 7 | * for JavaScript based Bootstrap features such as modals and tabs. This 8 | * code may be modified to fit the specific needs of your application. 9 | */ 10 | 11 | try { 12 | window.Popper = require('popper.js').default; 13 | window.$ = window.jQuery = require('jquery'); 14 | 15 | require('bootstrap'); 16 | } catch (e) { } 17 | 18 | /** 19 | * We'll load the axios HTTP library which allows us to easily issue requests 20 | * to our Laravel back-end. This library automatically handles sending the 21 | * CSRF token as a header based on the value of the "XSRF" token cookie. 22 | */ 23 | 24 | window.axios = require('axios'); 25 | 26 | window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; 27 | 28 | /** 29 | * Echo exposes an expressive API for subscribing to channels and listening 30 | * for events that are broadcast by Laravel. Echo and event broadcasting 31 | * allows your team to easily build robust real-time web applications. 32 | */ 33 | 34 | // import Echo from 'laravel-echo'; 35 | 36 | // window.Pusher = require('pusher-js'); 37 | 38 | // window.Echo = new Echo({ 39 | // broadcaster: 'pusher', 40 | // key: process.env.MIX_PUSHER_APP_KEY, 41 | // cluster: process.env.MIX_PUSHER_APP_CLUSTER, 42 | // forceTLS: true 43 | // }); 44 | -------------------------------------------------------------------------------- /resources/js/components/UserAddressesCreateAndEdit.js: -------------------------------------------------------------------------------- 1 | // 注册一个名为 user-addresses-create-and-edit 的组件 2 | Vue.component('user-addresses-create-and-edit', { 3 | // 组件的数据 4 | data() { 5 | return { 6 | province: '', // 省 7 | city: '', // 市 8 | district: '', // 区 9 | } 10 | }, 11 | methods: { 12 | // 把参数 val 中的值保存到组件的数据中 13 | onDistrictChanged(val) { 14 | if (val.length === 3) { 15 | this.province = val[0]; 16 | this.city = val[1]; 17 | this.district = val[2]; 18 | } 19 | } 20 | } 21 | }); 22 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'password' => 'The provided password is incorrect.', 18 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 19 | 20 | ]; 21 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- 1 | 'Your password has been reset!', 17 | 'sent' => 'We have emailed your password reset link!', 18 | 'throttled' => 'Please wait before retrying.', 19 | 'token' => 'This password reset token is invalid.', 20 | 'user' => "We can't find a user with that email address.", 21 | 22 | ]; 23 | -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | // Body 2 | $body-bg: #f8fafc; 3 | 4 | // Typography 5 | $font-family-sans-serif: 'Nunito', sans-serif; 6 | $font-size-base: 0.9rem; 7 | $line-height-base: 1.6; 8 | 9 | // Colors 10 | $blue: #3490dc; 11 | $indigo: #6574cd; 12 | $purple: #9561e2; 13 | $pink: #f66d9b; 14 | $red: #e3342f; 15 | $orange: #f6993f; 16 | $yellow: #ffed4a; 17 | $green: #38c172; 18 | $teal: #4dc0b5; 19 | $cyan: #6cb2eb; 20 | -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
{{ __('Verify Your Email Address') }}
9 | 10 |
11 | @if (session('resent')) 12 | 15 | @endif 16 | 17 | {{ __('Before proceeding, please check your email for a verification link.') }} 18 | {{ __('If you did not receive the email') }}, 19 |
20 | @csrf 21 | . 22 |
23 |
24 |
25 |
26 |
27 |
28 | @endsection 29 | -------------------------------------------------------------------------------- /resources/views/layouts/_footer.blade.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | @yield('title', 'Laravel Shop') - Laravel 电商教程 10 | 11 | 12 | 13 | 14 |
15 | @include('layouts._header') 16 |
17 | @yield('content') 18 |
19 | @include('layouts._footer') 20 |
21 | 22 | 23 | @yield('scriptsAfterJs') 24 | 25 | 26 | -------------------------------------------------------------------------------- /resources/views/pages/error.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section('title', '错误') 3 | 4 | @section('content') 5 |
6 |
错误
7 |
8 |

{{ $msg }}

9 | 返回首页 10 |
11 |
12 | @endsection 13 | -------------------------------------------------------------------------------- /resources/views/pages/root.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section('title', '首页') 3 | 4 | @section('content') 5 |

这里是首页

6 | @stop 7 | -------------------------------------------------------------------------------- /resources/views/pages/success.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section('title', '操作成功') 3 | 4 | @section('content') 5 |
6 |
操作成功
7 |
8 |

{{ $msg }}

9 | 返回首页 10 |
11 |
12 | @endsection 13 | -------------------------------------------------------------------------------- /resources/views/products/favorites.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | @section('title', '我的收藏') 3 | 4 | @section('content') 5 |
6 |
7 |
8 |
我的收藏
9 |
10 |
11 | @foreach($products as $product) 12 |
13 |
14 |
15 |
16 | 17 | 18 | 19 |
20 |
{{ $product->price }}
21 | {{ $product->title }} 22 |
23 |
24 |
销量 {{ $product->sold_count }}笔
25 |
评价 {{ $product->review_count }}
26 |
27 |
28 |
29 | @endforeach 30 |
31 |
{{ $products->render() }}
32 |
33 |
34 |
35 |
36 | @endsection 37 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 18 | return $request->user(); 19 | }); 20 | -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 18 | }); 19 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 19 | })->purpose('Display an inspiring quote'); 20 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- 1 | const mix = require('laravel-mix'); 2 | 3 | mix.js('resources/js/app.js', 'public/js') 4 | .vue() 5 | .sass('resources/sass/app.scss', 'public/css') 6 | .version(); 7 | --------------------------------------------------------------------------------