├── .env.example ├── .gitattributes ├── .gitignore ├── .idea ├── .name ├── LaravelMart.iml ├── blade.xml ├── deployment.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── Project.KWI ├── ToDo ├── app ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── Events │ └── Event.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── Common.php ├── Http │ ├── Controllers │ │ ├── AboutController.php │ │ ├── AddressController.php │ │ ├── ApiController.php │ │ ├── Auth │ │ │ ├── AuthController.php │ │ │ └── PasswordController.php │ │ ├── Backend │ │ │ ├── AdminController.php │ │ │ └── ListController.php │ │ ├── BillingController.php │ │ ├── BlogController.php │ │ ├── CartController.php │ │ ├── CategoryController.php │ │ ├── Controller.php │ │ ├── CoreController.php │ │ ├── HomeController.php │ │ ├── IndexController.php │ │ ├── OrderController.php │ │ ├── PageController.php │ │ ├── ProductsController.php │ │ ├── UsersController.php │ │ ├── WelcomeController.php │ │ └── WishlistController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── RedirectIfAuthenticated.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── CreateBillingRequest.php │ │ ├── CreateProductRequest.php │ │ └── Request.php │ └── routes.php ├── Jobs │ └── Job.php ├── Libraries │ └── Repositories │ │ ├── BillingRepository.php │ │ └── ProductRepository.php ├── Listeners │ └── .gitkeep ├── Models │ ├── Billing.php │ ├── Blog.php │ ├── Category.php │ ├── Coupon.php │ ├── Email.php │ ├── Menu.php │ ├── Order.php │ ├── OrderItem.php │ ├── Page.php │ ├── Permission.php │ ├── Permission_role.php │ ├── Product.php │ ├── Role.php │ ├── Role_user.php │ ├── Setting.php │ ├── User.php │ └── Wishlist.php ├── Providers │ ├── AppServiceProvider.php │ ├── BusServiceProvider.php │ ├── ConfigServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Services │ ├── Crud │ │ ├── CrudFactory.php │ │ ├── CrudServiceProvider.php │ │ └── Select.php │ ├── Html │ │ ├── FormBuilder.php │ │ └── HtmlServiceProvider.php │ ├── Registrar.php │ └── Validation.php └── User.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── cache.php ├── compile.php ├── database.php ├── entrust.php ├── filesystems.php ├── generator.php ├── laravelmart.php ├── mail.php ├── queue.php ├── services.php ├── session.php ├── sitemap.php ├── tagging.php └── view.php ├── database ├── .gitignore ├── factories │ └── ModelFactory.php ├── migrations │ ├── .gitkeep │ ├── 2013_08_21_000000_CreateTokenTable.php │ ├── 2013_12_03_000000_CreateCategoryTable.php │ ├── 2013_12_03_000000_CreateOrderItemTable.php │ ├── 2013_12_03_000000_CreateOrderTable.php │ ├── 2014_01_04_000000_create_wishlists_table.php │ ├── 2014_01_06_000000_create_session_table.php │ ├── 2014_01_07_073615_create_tagged_table.php │ ├── 2014_01_07_073615_create_tags_table.php │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2015_06_06_194542_create_billings_table.php │ ├── 2015_06_07_112650_create_products_table.php │ ├── 2015_06_09_102200_entrust_setup_tables.php │ ├── 2015_06_14_000000_create_menu_table.php │ ├── 2015_06_14_110000_create_page_table.php │ ├── 2015_06_15_000000_create_coupon_table.php │ ├── 2015_06_20_000000_create_setting_table.php │ ├── 2015_06_21_000000_create_email_table.php │ └── 2015_09_18_110000_create_blog_table.php └── seeds │ ├── .gitkeep │ ├── BlogTableSeeder.php │ ├── CategoryTableSeeder.php │ ├── DatabaseSeeder.php │ ├── EmailTableSeeder.php │ ├── MenuTableSeeder.php │ ├── OrderItemTableSeeder.php │ ├── OrderTableSeeder.php │ ├── PageTableSeeder.php │ ├── PermissionTableSeeder.php │ ├── ProductTableSeeder.php │ ├── RoleTableSeeder.php │ ├── SettingTableSeeder.php │ ├── UserTableSeeder.php │ └── WishlistsTableSeeder.php ├── gulpfile.js ├── package.json ├── phpspec.yml ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── css │ │ ├── all.css │ │ └── all.css.map │ ├── fonts │ │ ├── rudra-preview.html │ │ ├── rudra_6d5d5403fc5285c7c04c1db14d9de826.eot │ │ ├── rudra_6d5d5403fc5285c7c04c1db14d9de826.svg │ │ ├── rudra_6d5d5403fc5285c7c04c1db14d9de826.ttf │ │ └── rudra_6d5d5403fc5285c7c04c1db14d9de826.woff │ ├── img │ │ ├── about │ │ │ └── payment.png │ │ ├── banners │ │ │ ├── banner-1.jpg │ │ │ ├── banner-2.jpg │ │ │ ├── banner-3.jpg │ │ │ └── thumbs │ │ │ │ ├── 3_thumb.jpg │ │ │ │ ├── thumbnail-1.png │ │ │ │ ├── thumbnail-2.png │ │ │ │ └── thumbnail-3.png │ │ ├── bg.jpg │ │ ├── bg.png │ │ ├── bg │ │ │ ├── bgb20.png │ │ │ ├── bgb30.png │ │ │ ├── bgb50.png │ │ │ ├── blue.png │ │ │ ├── body_bg.jpg │ │ │ ├── circle.png │ │ │ ├── dark │ │ │ │ ├── N.jpg │ │ │ │ ├── black_denim.png │ │ │ │ ├── black_linen_v2.png │ │ │ │ ├── concrete_wall.png │ │ │ │ ├── dark_wall.png │ │ │ │ ├── grey_wash_wall.png │ │ │ │ ├── low_contrast_linen.png │ │ │ │ ├── noisy_net.png │ │ │ │ ├── stressed_linen.png │ │ │ │ ├── tweed.jpg │ │ │ │ ├── tweed.png │ │ │ │ └── type.png │ │ │ ├── dust.png │ │ │ ├── fabric_of_squares_gray.png │ │ │ ├── fabric_plaid.png │ │ │ ├── felt.png │ │ │ ├── furley_bg.png │ │ │ ├── grains.jpg │ │ │ ├── grass_textured_icons.rar │ │ │ ├── greyzz.png │ │ │ ├── light │ │ │ │ ├── PATTERN │ │ │ │ │ ├── billie_holiday.zip │ │ │ │ │ ├── binding_dark.zip │ │ │ │ │ ├── black_linen_v2.zip │ │ │ │ │ ├── blackmamba.zip │ │ │ │ │ ├── blackorchid.zip │ │ │ │ │ ├── brushed_alu_dark.zip │ │ │ │ │ ├── concrete_wall (1).zip │ │ │ │ │ ├── concrete_wall.zip │ │ │ │ │ ├── cream_dust.zip │ │ │ │ │ ├── cream_dust │ │ │ │ │ │ └── cream_dust │ │ │ │ │ │ │ ├── cream_dust_@2X.png │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── debut_light.zip │ │ │ │ │ ├── dust.zip │ │ │ │ │ ├── dust │ │ │ │ │ │ ├── dust.png │ │ │ │ │ │ ├── dust_@2X.png │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── fabric_of_squares_gray.zip │ │ │ │ │ ├── green_dust_scratch.zip │ │ │ │ │ ├── green_dust_scratch │ │ │ │ │ │ └── green_dust_scratch │ │ │ │ │ │ │ ├── green_dust_scratch.png │ │ │ │ │ │ │ ├── green_dust_scratch_@2X.png │ │ │ │ │ │ │ └── readme.txt │ │ │ │ │ ├── lightpaperfibers (1).zip │ │ │ │ │ ├── mirrored_squares.zip │ │ │ │ │ ├── nice_snow.zip │ │ │ │ │ ├── noisy_net.zip │ │ │ │ │ ├── p1.zip │ │ │ │ │ ├── polaroid.zip │ │ │ │ │ ├── random_grey_variations.zip │ │ │ │ │ ├── ricepaper_v3.zip │ │ │ │ │ ├── satinweave.zip │ │ │ │ │ ├── textured_paper.zip │ │ │ │ │ ├── ticks.zip │ │ │ │ │ ├── twinkle_twinkle.zip │ │ │ │ │ ├── twinkle_twinkle │ │ │ │ │ │ └── twinkle_twinkle │ │ │ │ │ │ │ ├── readme.txt │ │ │ │ │ │ │ ├── twinkle_twinkle.png │ │ │ │ │ │ │ └── twinkle_twinkle_@2X.png │ │ │ │ │ ├── white_wall_hash.zip │ │ │ │ │ └── witewall_3.zip │ │ │ │ └── cream_dust.png │ │ │ ├── mochaGrunge.png │ │ │ ├── noise.png │ │ │ ├── polka.png │ │ │ ├── subtle_grunge.png │ │ │ └── tex2res5.png │ │ ├── bootstrap-logo.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ ├── index.html │ │ ├── loader │ │ │ ├── 28.gif │ │ │ ├── 28.tar │ │ │ ├── 29(1).png │ │ │ ├── 29.png │ │ │ └── 29.tar │ │ ├── raty │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── cancel-custom-off.png │ │ │ ├── cancel-custom-on.png │ │ │ ├── cancel-off-big.png │ │ │ ├── cancel-on-big.png │ │ │ ├── core │ │ │ │ ├── cancel-off.png │ │ │ │ ├── cancel-on.png │ │ │ │ ├── star-half.png │ │ │ │ ├── star-off.png │ │ │ │ └── star-on.png │ │ │ ├── off.png │ │ │ ├── on.png │ │ │ ├── star-half-big.png │ │ │ ├── star-half-mono.png │ │ │ ├── star-off-big.png │ │ │ └── star-on-big.png │ │ └── tmp │ │ │ ├── b.png │ │ │ ├── filename2.jpg │ │ │ └── t.jpg │ └── js │ │ ├── all.js │ │ └── all.js.map ├── build │ ├── assets │ │ ├── css │ │ │ └── all.css.map │ │ ├── img │ │ │ ├── 1.png │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── divider.png │ │ │ └── original.jpg │ │ └── js │ │ │ └── all.js.map │ └── rev-manifest.json ├── favicon.ico ├── index.php └── robots.txt ├── readme.md ├── resources ├── api-generator-templates │ ├── API │ │ ├── Controller.txt │ │ └── ControllerRepo.txt │ ├── Common │ │ ├── Migration.txt │ │ ├── Model.txt │ │ ├── Model_Extended.txt │ │ └── Repository.txt │ ├── Controller │ │ └── AppBaseController.txt │ └── Scaffold │ │ ├── Controller.txt │ │ ├── ControllerRepo.txt │ │ ├── Request.txt │ │ ├── Views │ │ ├── create.blade.txt │ │ ├── edit.blade.txt │ │ ├── field.blade.txt │ │ ├── fields.blade.txt │ │ ├── index.blade.txt │ │ ├── search.blade.txt │ │ └── show.blade.txt │ │ └── routes.txt ├── assets │ ├── bower_components │ │ ├── Buttons │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── config.rb │ │ │ ├── css │ │ │ │ ├── buttons.css │ │ │ │ └── buttons.min.css │ │ │ ├── humans.txt │ │ │ ├── js │ │ │ │ └── buttons.js │ │ │ ├── package.json │ │ │ ├── scss │ │ │ │ ├── _base.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _options.scss │ │ │ │ ├── buttons.scss │ │ │ │ └── types │ │ │ │ │ ├── _3d.scss │ │ │ │ │ ├── _border.scss │ │ │ │ │ ├── _borderless.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _glow.scss │ │ │ │ │ ├── _groups.scss │ │ │ │ │ ├── _longshadow.scss │ │ │ │ │ ├── _raised.scss │ │ │ │ │ ├── _shapes.scss │ │ │ │ │ ├── _sizes.scss │ │ │ │ │ └── _wrapper.scss │ │ │ ├── showcase │ │ │ │ ├── css │ │ │ │ │ ├── buttons.css │ │ │ │ │ ├── grids.css │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── showcase.css │ │ │ │ ├── fonts │ │ │ │ │ └── icomoon │ │ │ │ │ │ ├── Read Me.txt │ │ │ │ │ │ ├── demo-files │ │ │ │ │ │ ├── demo.css │ │ │ │ │ │ └── demo.js │ │ │ │ │ │ ├── demo.html │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ │ ├── icomoon.svg │ │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ │ └── icomoon.woff │ │ │ │ │ │ ├── selection.json │ │ │ │ │ │ └── style.css │ │ │ │ ├── images │ │ │ │ │ ├── arrows │ │ │ │ │ │ ├── blue-arrows-left.png │ │ │ │ │ │ ├── blue-arrows-right.png │ │ │ │ │ │ ├── blue-arrows.png │ │ │ │ │ │ ├── light-arrows.png │ │ │ │ │ │ ├── white-arrows-left.png │ │ │ │ │ │ ├── white-arrows-right.png │ │ │ │ │ │ └── white-arrows.png │ │ │ │ │ ├── backgrounds │ │ │ │ │ │ ├── debut_light.png │ │ │ │ │ │ ├── debut_light_@2X.png │ │ │ │ │ │ ├── p6.png │ │ │ │ │ │ └── p6_@2X.png │ │ │ │ │ └── mobile │ │ │ │ │ │ ├── iphone-6.png │ │ │ │ │ │ ├── iphone-status-bar.png │ │ │ │ │ │ └── iphone.png │ │ │ │ ├── includes │ │ │ │ │ ├── 3d.html │ │ │ │ │ ├── accessibility.html │ │ │ │ │ ├── block.html │ │ │ │ │ ├── border.html │ │ │ │ │ ├── customize.html │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── form.html │ │ │ │ │ ├── glowing.html │ │ │ │ │ ├── group.html │ │ │ │ │ ├── hero.html │ │ │ │ │ ├── longshadow.html │ │ │ │ │ ├── nav.html │ │ │ │ │ ├── promo.html │ │ │ │ │ ├── raised.html │ │ │ │ │ ├── setup.html │ │ │ │ │ ├── sizes.html │ │ │ │ │ ├── templates.html │ │ │ │ │ ├── text.html │ │ │ │ │ ├── transition-guide.html │ │ │ │ │ ├── unicorn-nav.html │ │ │ │ │ └── wrapper.html │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── animate.css │ │ │ │ │ ├── buttons.js │ │ │ │ │ ├── handlebars.js │ │ │ │ │ ├── html5shiv.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── polyfill.js │ │ │ │ │ ├── scrollMonitor.js │ │ │ │ │ ├── scrollto.js │ │ │ │ │ ├── showcase.js │ │ │ │ │ ├── smooth-scroll.js │ │ │ │ │ └── zeroclipboard │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .spmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ ├── ZeroClipboard.Core.js │ │ │ │ │ │ ├── ZeroClipboard.Core.min.js │ │ │ │ │ │ ├── ZeroClipboard.Core.min.map │ │ │ │ │ │ ├── ZeroClipboard.js │ │ │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ │ │ ├── ZeroClipboard.min.map │ │ │ │ │ │ └── ZeroClipboard.swf │ │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── api │ │ │ │ │ │ │ ├── ZeroClipboard.Core.md │ │ │ │ │ │ │ └── ZeroClipboard.md │ │ │ │ │ │ ├── instructions.md │ │ │ │ │ │ ├── roadmap.md │ │ │ │ │ │ └── security.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── flash │ │ │ │ │ │ │ ├── ClipboardInjector.as │ │ │ │ │ │ │ ├── JsProxy.as │ │ │ │ │ │ │ ├── XssUtils.as │ │ │ │ │ │ │ └── ZeroClipboard.as │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ ├── api.js │ │ │ │ │ │ │ │ ├── private.js │ │ │ │ │ │ │ │ └── state.js │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ │ ├── api.js │ │ │ │ │ │ │ │ ├── private.js │ │ │ │ │ │ │ │ └── state.js │ │ │ │ │ │ │ ├── end.js │ │ │ │ │ │ │ ├── shared │ │ │ │ │ │ │ │ ├── private.js │ │ │ │ │ │ │ │ └── state.js │ │ │ │ │ │ │ └── start.js │ │ │ │ │ │ └── meta │ │ │ │ │ │ │ ├── LICENSE.tmpl │ │ │ │ │ │ │ ├── bower.json.tmpl │ │ │ │ │ │ │ ├── composer.json.tmpl │ │ │ │ │ │ │ └── source-banner.tmpl │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ ├── built │ │ │ │ │ │ ├── ZeroClipboard.Core.tests.js │ │ │ │ │ │ ├── ZeroClipboard.Core.tests.js.html │ │ │ │ │ │ ├── ZeroClipboard.tests.js │ │ │ │ │ │ └── ZeroClipboard.tests.js.html │ │ │ │ │ │ ├── client │ │ │ │ │ │ ├── api.tests.js │ │ │ │ │ │ ├── api.tests.js.html │ │ │ │ │ │ ├── private.tests.js │ │ │ │ │ │ └── private.tests.js.html │ │ │ │ │ │ ├── core │ │ │ │ │ │ ├── api.tests.js │ │ │ │ │ │ ├── api.tests.js.html │ │ │ │ │ │ ├── private.tests.js │ │ │ │ │ │ └── private.tests.js.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── shared │ │ │ │ │ │ ├── private.tests.js │ │ │ │ │ │ └── private.tests.js.html │ │ │ │ ├── pages │ │ │ │ │ └── index.html │ │ │ │ └── scss │ │ │ │ │ ├── _base.scss │ │ │ │ │ ├── _layout.scss │ │ │ │ │ ├── _options.scss │ │ │ │ │ ├── _state.scss │ │ │ │ │ ├── _theme.scss │ │ │ │ │ ├── module │ │ │ │ │ ├── _arrows.scss │ │ │ │ │ ├── _code.scss │ │ │ │ │ ├── _docs.scss │ │ │ │ │ ├── _hero.scss │ │ │ │ │ ├── _logo.scss │ │ │ │ │ ├── _nav.scss │ │ │ │ │ ├── _phone.scss │ │ │ │ │ ├── _promotional.scss │ │ │ │ │ ├── _showcase.scss │ │ │ │ │ └── _unicorn-nav.scss │ │ │ │ │ └── showcase.scss │ │ │ └── tests │ │ │ │ ├── index.html │ │ │ │ └── resources │ │ │ │ ├── qunit.css │ │ │ │ ├── qunit.js │ │ │ │ └── tests.js │ │ ├── css-modal │ │ │ ├── .bower.json │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTE.md │ │ │ ├── FAQ.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── _modal-animations.scss │ │ │ ├── _modal-config.scss │ │ │ ├── _modal-core.scss │ │ │ ├── _modal-element.scss │ │ │ ├── _modal-theme.scss │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── modal-gallery.css │ │ │ │ ├── modal-maxwidth.css │ │ │ │ ├── modal-resize.css │ │ │ │ ├── modal-spinner.css │ │ │ │ ├── modal-stretch.css │ │ │ │ ├── modal.css │ │ │ │ └── modal.js │ │ │ ├── index.html │ │ │ ├── modal.js │ │ │ ├── modal.scss │ │ │ └── plugins │ │ │ │ ├── modal-gallery.js │ │ │ │ ├── modal-gallery.scss │ │ │ │ ├── modal-helper.js │ │ │ │ ├── modal-html5video.js │ │ │ │ ├── modal-maxwidth.js │ │ │ │ ├── modal-maxwidth.scss │ │ │ │ ├── modal-resize.js │ │ │ │ ├── modal-resize.scss │ │ │ │ ├── modal-spinner.scss │ │ │ │ └── modal-stretch.scss │ │ ├── fancybox │ │ │ ├── .bower.json │ │ │ ├── .gitattributes │ │ │ ├── CHANGELOG.md │ │ │ ├── README.md │ │ │ ├── demo │ │ │ │ ├── 1_b.jpg │ │ │ │ ├── 1_s.jpg │ │ │ │ ├── 2_b.jpg │ │ │ │ ├── 2_s.jpg │ │ │ │ ├── 3_b.jpg │ │ │ │ ├── 3_s.jpg │ │ │ │ ├── 4_b.jpg │ │ │ │ ├── 4_s.jpg │ │ │ │ ├── 5_b.jpg │ │ │ │ ├── 5_s.jpg │ │ │ │ ├── ajax.txt │ │ │ │ ├── iframe.html │ │ │ │ └── index.html │ │ │ ├── lib │ │ │ │ ├── jquery-1.10.1.min.js │ │ │ │ ├── jquery-1.9.0.min.js │ │ │ │ └── jquery.mousewheel-3.0.6.pack.js │ │ │ ├── source │ │ │ │ ├── blank.gif │ │ │ │ ├── fancybox_loading.gif │ │ │ │ ├── fancybox_loading@2x.gif │ │ │ │ ├── fancybox_overlay.png │ │ │ │ ├── fancybox_sprite.png │ │ │ │ ├── fancybox_sprite@2x.png │ │ │ │ ├── helpers │ │ │ │ │ ├── fancybox_buttons.png │ │ │ │ │ ├── jquery.fancybox-buttons.css │ │ │ │ │ ├── jquery.fancybox-buttons.js │ │ │ │ │ ├── jquery.fancybox-media.js │ │ │ │ │ ├── jquery.fancybox-thumbs.css │ │ │ │ │ └── jquery.fancybox-thumbs.js │ │ │ │ ├── jquery.fancybox.css │ │ │ │ ├── jquery.fancybox.js │ │ │ │ └── jquery.fancybox.pack.js │ │ │ └── sprite.psd │ │ ├── formstone │ │ │ ├── .bower.json │ │ │ ├── .bowerrc │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── background.css │ │ │ │ │ ├── carousel.css │ │ │ │ │ ├── checkbox.css │ │ │ │ │ ├── dropdown.css │ │ │ │ │ ├── grid.css │ │ │ │ │ ├── grid.ie.css │ │ │ │ │ ├── lightbox.css │ │ │ │ │ ├── navigation.css │ │ │ │ │ ├── number.css │ │ │ │ │ ├── pagination.css │ │ │ │ │ ├── range.css │ │ │ │ │ ├── scrollbar.css │ │ │ │ │ ├── tabs.css │ │ │ │ │ ├── tooltip.css │ │ │ │ │ └── upload.css │ │ │ │ └── js │ │ │ │ │ ├── analytics.js │ │ │ │ │ ├── asap.js │ │ │ │ │ ├── background.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── cookie.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── equalize.js │ │ │ │ │ ├── lightbox.js │ │ │ │ │ ├── mediaquery.js │ │ │ │ │ ├── navigation.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── pagination.js │ │ │ │ │ ├── range.js │ │ │ │ │ ├── scrollbar.js │ │ │ │ │ ├── swap.js │ │ │ │ │ ├── tabs.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ ├── touch.js │ │ │ │ │ ├── transition.js │ │ │ │ │ └── upload.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── docs │ │ │ │ │ ├── analytics.html │ │ │ │ │ ├── analytics.md │ │ │ │ │ ├── asap.html │ │ │ │ │ ├── asap.md │ │ │ │ │ ├── background.html │ │ │ │ │ ├── background.md │ │ │ │ │ ├── carousel.html │ │ │ │ │ ├── carousel.md │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── checkbox.md │ │ │ │ │ ├── cookie.html │ │ │ │ │ ├── cookie.md │ │ │ │ │ ├── core.md │ │ │ │ │ ├── dropdown.html │ │ │ │ │ ├── dropdown.md │ │ │ │ │ ├── equalize.html │ │ │ │ │ ├── equalize.md │ │ │ │ │ ├── grid.html │ │ │ │ │ ├── grid.md │ │ │ │ │ ├── lightbox.html │ │ │ │ │ ├── lightbox.md │ │ │ │ │ ├── mediaquery.html │ │ │ │ │ ├── mediaquery.md │ │ │ │ │ ├── navigation.html │ │ │ │ │ ├── navigation.md │ │ │ │ │ ├── number.html │ │ │ │ │ ├── number.md │ │ │ │ │ ├── pagination.html │ │ │ │ │ ├── pagination.md │ │ │ │ │ ├── range.html │ │ │ │ │ ├── range.md │ │ │ │ │ ├── scrollbar.html │ │ │ │ │ ├── scrollbar.md │ │ │ │ │ ├── swap.html │ │ │ │ │ ├── swap.md │ │ │ │ │ ├── tabs.html │ │ │ │ │ ├── tabs.md │ │ │ │ │ ├── tooltip.html │ │ │ │ │ ├── tooltip.md │ │ │ │ │ ├── touch.html │ │ │ │ │ ├── touch.md │ │ │ │ │ ├── transition.html │ │ │ │ │ ├── transition.md │ │ │ │ │ ├── upload.html │ │ │ │ │ └── upload.md │ │ │ │ ├── js │ │ │ │ │ ├── analytics.js │ │ │ │ │ ├── asap.js │ │ │ │ │ ├── background.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── cookie.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── equalize.js │ │ │ │ │ ├── lightbox.js │ │ │ │ │ ├── mediaquery.js │ │ │ │ │ ├── navigation.js │ │ │ │ │ ├── number.js │ │ │ │ │ ├── pagination.js │ │ │ │ │ ├── range.js │ │ │ │ │ ├── scrollbar.js │ │ │ │ │ ├── swap.js │ │ │ │ │ ├── tabs.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ ├── touch.js │ │ │ │ │ ├── transition.js │ │ │ │ │ └── upload.js │ │ │ │ └── less │ │ │ │ │ ├── background.less │ │ │ │ │ ├── carousel.less │ │ │ │ │ ├── checkbox.less │ │ │ │ │ ├── dropdown.less │ │ │ │ │ ├── equalize.less │ │ │ │ │ ├── grid.ie.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── imports │ │ │ │ │ ├── grid-config.less │ │ │ │ │ ├── grid-mixins.less │ │ │ │ │ └── utils.less │ │ │ │ │ ├── lightbox.less │ │ │ │ │ ├── navigation.less │ │ │ │ │ ├── number.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── range.less │ │ │ │ │ ├── scrollbar.less │ │ │ │ │ ├── swap.less │ │ │ │ │ ├── tabs.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ ├── touch.less │ │ │ │ │ ├── transition.less │ │ │ │ │ └── upload.less │ │ │ └── tasks │ │ │ │ ├── docs.js │ │ │ │ └── license.js │ │ ├── jquery │ │ │ ├── .bower.json │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ └── src │ │ │ │ ├── ajax.js │ │ │ │ ├── ajax │ │ │ │ ├── jsonp.js │ │ │ │ ├── load.js │ │ │ │ ├── parseJSON.js │ │ │ │ ├── parseXML.js │ │ │ │ ├── script.js │ │ │ │ ├── var │ │ │ │ │ ├── nonce.js │ │ │ │ │ └── rquery.js │ │ │ │ └── xhr.js │ │ │ │ ├── attributes.js │ │ │ │ ├── attributes │ │ │ │ ├── attr.js │ │ │ │ ├── classes.js │ │ │ │ ├── prop.js │ │ │ │ ├── support.js │ │ │ │ └── val.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── core.js │ │ │ │ ├── core │ │ │ │ ├── access.js │ │ │ │ ├── init.js │ │ │ │ ├── parseHTML.js │ │ │ │ ├── ready.js │ │ │ │ └── var │ │ │ │ │ └── rsingleTag.js │ │ │ │ ├── css.js │ │ │ │ ├── css │ │ │ │ ├── addGetHookIf.js │ │ │ │ ├── curCSS.js │ │ │ │ ├── defaultDisplay.js │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ ├── support.js │ │ │ │ ├── swap.js │ │ │ │ └── var │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ ├── getStyles.js │ │ │ │ │ ├── isHidden.js │ │ │ │ │ ├── rmargin.js │ │ │ │ │ └── rnumnonpx.js │ │ │ │ ├── data.js │ │ │ │ ├── data │ │ │ │ ├── Data.js │ │ │ │ ├── accepts.js │ │ │ │ └── var │ │ │ │ │ ├── data_priv.js │ │ │ │ │ └── data_user.js │ │ │ │ ├── deferred.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── dimensions.js │ │ │ │ ├── effects.js │ │ │ │ ├── effects │ │ │ │ ├── Tween.js │ │ │ │ └── animatedSelector.js │ │ │ │ ├── event.js │ │ │ │ ├── event │ │ │ │ ├── ajax.js │ │ │ │ ├── alias.js │ │ │ │ └── support.js │ │ │ │ ├── exports │ │ │ │ ├── amd.js │ │ │ │ └── global.js │ │ │ │ ├── intro.js │ │ │ │ ├── jquery.js │ │ │ │ ├── manipulation.js │ │ │ │ ├── manipulation │ │ │ │ ├── _evalUrl.js │ │ │ │ ├── support.js │ │ │ │ └── var │ │ │ │ │ └── rcheckableType.js │ │ │ │ ├── offset.js │ │ │ │ ├── outro.js │ │ │ │ ├── queue.js │ │ │ │ ├── queue │ │ │ │ └── delay.js │ │ │ │ ├── selector-native.js │ │ │ │ ├── selector-sizzle.js │ │ │ │ ├── selector.js │ │ │ │ ├── serialize.js │ │ │ │ ├── sizzle │ │ │ │ └── dist │ │ │ │ │ ├── sizzle.js │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ └── sizzle.min.map │ │ │ │ ├── traversing.js │ │ │ │ ├── traversing │ │ │ │ ├── findFilter.js │ │ │ │ └── var │ │ │ │ │ └── rneedsContext.js │ │ │ │ ├── var │ │ │ │ ├── arr.js │ │ │ │ ├── class2type.js │ │ │ │ ├── concat.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── indexOf.js │ │ │ │ ├── pnum.js │ │ │ │ ├── push.js │ │ │ │ ├── rnotwhite.js │ │ │ │ ├── slice.js │ │ │ │ ├── strundefined.js │ │ │ │ ├── support.js │ │ │ │ └── toString.js │ │ │ │ └── wrap.js │ │ ├── microplugin │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── microplugin.js │ │ ├── raty │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── README.md │ │ │ ├── changelog.md │ │ │ ├── demo │ │ │ │ ├── favicon.ico │ │ │ │ ├── fonts │ │ │ │ │ ├── wbotelhos.eot │ │ │ │ │ ├── wbotelhos.svg │ │ │ │ │ ├── wbotelhos.ttf │ │ │ │ │ └── wbotelhos.woff │ │ │ │ ├── images │ │ │ │ │ ├── 0.png │ │ │ │ │ ├── 1.png │ │ │ │ │ ├── 2.png │ │ │ │ │ ├── 3.png │ │ │ │ │ ├── 4.png │ │ │ │ │ ├── 5.png │ │ │ │ │ ├── cancel-custom-off.png │ │ │ │ │ ├── cancel-custom-on.png │ │ │ │ │ ├── cancel-off.png │ │ │ │ │ ├── cancel-on.png │ │ │ │ │ ├── off.png │ │ │ │ │ ├── on.png │ │ │ │ │ ├── star-half-mono.png │ │ │ │ │ ├── star-half.png │ │ │ │ │ ├── star-off.png │ │ │ │ │ └── star-on.png │ │ │ │ ├── index.html │ │ │ │ ├── javascripts │ │ │ │ │ └── labs.js │ │ │ │ └── stylesheets │ │ │ │ │ └── labs.css │ │ │ ├── lib │ │ │ │ ├── fonts │ │ │ │ │ ├── raty.eot │ │ │ │ │ ├── raty.svg │ │ │ │ │ ├── raty.ttf │ │ │ │ │ └── raty.woff │ │ │ │ ├── images │ │ │ │ │ ├── cancel-off.png │ │ │ │ │ ├── cancel-on.png │ │ │ │ │ ├── star-half.png │ │ │ │ │ ├── star-off.png │ │ │ │ │ └── star-on.png │ │ │ │ ├── jquery.raty.css │ │ │ │ └── jquery.raty.js │ │ │ ├── package.json │ │ │ ├── spec │ │ │ │ ├── cancel_spec.js │ │ │ │ ├── cancelhint_spec.js │ │ │ │ ├── cancelon_spec.js │ │ │ │ ├── cancelplace_spec.js │ │ │ │ ├── click_spec.js │ │ │ │ ├── common_spec.js │ │ │ │ ├── fn_cancel_spec.js │ │ │ │ ├── fn_move_spec.js │ │ │ │ ├── fn_readonly_spec.js │ │ │ │ ├── fn_set_spec.js │ │ │ │ ├── fn_setscore_spec.js │ │ │ │ ├── getfirstdecimal_spec.js │ │ │ │ ├── half_spec.js │ │ │ │ ├── hints_spec.js │ │ │ │ ├── karma.conf.js │ │ │ │ ├── lib │ │ │ │ │ ├── boot.js │ │ │ │ │ ├── helper.js │ │ │ │ │ ├── jasmine-html.js │ │ │ │ │ ├── jasmine-jquery.js │ │ │ │ │ ├── jasmine.css │ │ │ │ │ └── jasmine.js │ │ │ │ ├── mouseout_spec.js │ │ │ │ ├── mouseover_spec.js │ │ │ │ ├── number_spec.js │ │ │ │ ├── numbermax_spec.js │ │ │ │ ├── options_spec.js │ │ │ │ ├── path_spec.js │ │ │ │ ├── precision_spec.js │ │ │ │ ├── readonly_spec.js │ │ │ │ ├── run.html │ │ │ │ ├── score_spec.js │ │ │ │ ├── scorename_spec.js │ │ │ │ ├── spec.js │ │ │ │ ├── staroff_spec.js │ │ │ │ ├── staron_spec.js │ │ │ │ ├── stars_spec.js │ │ │ │ ├── startype_spec.js │ │ │ │ ├── target_spec.js │ │ │ │ └── targettype_spec.js │ │ │ └── vendor │ │ │ │ └── jquery.js │ │ ├── select2 │ │ │ ├── .bower.json │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .jshintignore │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── component.json │ │ │ ├── composer.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── select2.css │ │ │ │ │ └── select2.min.css │ │ │ │ └── js │ │ │ │ │ ├── i18n │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.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 │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ └── zh-TW.js │ │ │ │ │ ├── select2.full.js │ │ │ │ │ ├── select2.full.min.js │ │ │ │ │ ├── select2.js │ │ │ │ │ └── select2.min.js │ │ │ ├── docs │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── _includes │ │ │ │ │ ├── footer.html │ │ │ │ │ ├── head.html │ │ │ │ │ └── navigation.html │ │ │ │ ├── _layouts │ │ │ │ │ ├── default.html │ │ │ │ │ └── home.html │ │ │ │ ├── announcements-4.0.html │ │ │ │ ├── community.html │ │ │ │ ├── examples.html │ │ │ │ ├── index.html │ │ │ │ ├── options.html │ │ │ │ └── vendor │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ └── prettify.css │ │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ │ ├── images │ │ │ │ │ └── flags │ │ │ │ │ │ ├── ak.png │ │ │ │ │ │ ├── al.png │ │ │ │ │ │ ├── ar.png │ │ │ │ │ │ ├── az.png │ │ │ │ │ │ ├── ca.png │ │ │ │ │ │ ├── co.png │ │ │ │ │ │ ├── ct.png │ │ │ │ │ │ ├── de.png │ │ │ │ │ │ ├── fl.png │ │ │ │ │ │ ├── ga.png │ │ │ │ │ │ ├── hi.png │ │ │ │ │ │ ├── ia.png │ │ │ │ │ │ ├── id.png │ │ │ │ │ │ ├── il.png │ │ │ │ │ │ ├── in.png │ │ │ │ │ │ ├── ks.png │ │ │ │ │ │ ├── ky.png │ │ │ │ │ │ ├── la.png │ │ │ │ │ │ ├── ma.png │ │ │ │ │ │ ├── md.png │ │ │ │ │ │ ├── me.png │ │ │ │ │ │ ├── mi.png │ │ │ │ │ │ ├── mn.png │ │ │ │ │ │ ├── mo.png │ │ │ │ │ │ ├── ms.png │ │ │ │ │ │ ├── mt.png │ │ │ │ │ │ ├── nc.png │ │ │ │ │ │ ├── nd.png │ │ │ │ │ │ ├── ne.png │ │ │ │ │ │ ├── nh.png │ │ │ │ │ │ ├── nj.png │ │ │ │ │ │ ├── nm.png │ │ │ │ │ │ ├── nv.png │ │ │ │ │ │ ├── ny.png │ │ │ │ │ │ ├── oh.png │ │ │ │ │ │ ├── ok.png │ │ │ │ │ │ ├── or.png │ │ │ │ │ │ ├── pa.png │ │ │ │ │ │ ├── ri.png │ │ │ │ │ │ ├── sc.png │ │ │ │ │ │ ├── sd.png │ │ │ │ │ │ ├── tn.png │ │ │ │ │ │ ├── tx.png │ │ │ │ │ │ ├── ut.png │ │ │ │ │ │ ├── va.png │ │ │ │ │ │ ├── vt.png │ │ │ │ │ │ ├── wa.png │ │ │ │ │ │ ├── wi.png │ │ │ │ │ │ ├── wv.png │ │ │ │ │ │ └── wy.png │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── placeholders.jquery.min.js │ │ │ │ │ └── prettify.min.js │ │ │ ├── package.json │ │ │ ├── select2.jquery.json │ │ │ ├── src │ │ │ │ ├── js │ │ │ │ │ ├── banner.end.js │ │ │ │ │ ├── banner.start.js │ │ │ │ │ ├── jquery.mousewheel.shim.js │ │ │ │ │ ├── jquery.select2.js │ │ │ │ │ ├── jquery.shim.js │ │ │ │ │ ├── select2 │ │ │ │ │ │ ├── compat │ │ │ │ │ │ │ ├── containerCss.js │ │ │ │ │ │ │ ├── dropdownCss.js │ │ │ │ │ │ │ ├── initSelection.js │ │ │ │ │ │ │ ├── inputData.js │ │ │ │ │ │ │ ├── matcher.js │ │ │ │ │ │ │ ├── query.js │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ ├── core.js │ │ │ │ │ │ ├── data │ │ │ │ │ │ │ ├── ajax.js │ │ │ │ │ │ │ ├── array.js │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ ├── maximumInputLength.js │ │ │ │ │ │ │ ├── maximumSelectionLength.js │ │ │ │ │ │ │ ├── minimumInputLength.js │ │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ │ ├── tags.js │ │ │ │ │ │ │ └── tokenizer.js │ │ │ │ │ │ ├── defaults.js │ │ │ │ │ │ ├── diacritics.js │ │ │ │ │ │ ├── dropdown.js │ │ │ │ │ │ ├── dropdown │ │ │ │ │ │ │ ├── attachBody.js │ │ │ │ │ │ │ ├── attachContainer.js │ │ │ │ │ │ │ ├── closeOnSelect.js │ │ │ │ │ │ │ ├── hidePlaceholder.js │ │ │ │ │ │ │ ├── infiniteScroll.js │ │ │ │ │ │ │ ├── minimumResultsForSearch.js │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ ├── selectOnClose.js │ │ │ │ │ │ │ └── stopPropagation.js │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de.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 │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-BR.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh-CN.js │ │ │ │ │ │ │ └── zh-TW.js │ │ │ │ │ │ ├── keys.js │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ ├── results.js │ │ │ │ │ │ ├── selection │ │ │ │ │ │ │ ├── allowClear.js │ │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ │ ├── clickMask.js │ │ │ │ │ │ │ ├── eventRelay.js │ │ │ │ │ │ │ ├── multiple.js │ │ │ │ │ │ │ ├── placeholder.js │ │ │ │ │ │ │ ├── search.js │ │ │ │ │ │ │ ├── single.js │ │ │ │ │ │ │ └── stopPropagation.js │ │ │ │ │ │ ├── translation.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── wrapper.end.js │ │ │ │ │ └── wrapper.start.js │ │ │ │ └── scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _multiple.scss │ │ │ │ │ ├── _single.scss │ │ │ │ │ ├── core.scss │ │ │ │ │ ├── mixins │ │ │ │ │ └── _gradients.scss │ │ │ │ │ └── theme │ │ │ │ │ ├── classic │ │ │ │ │ ├── _defaults.scss │ │ │ │ │ ├── _multiple.scss │ │ │ │ │ ├── _single.scss │ │ │ │ │ └── layout.scss │ │ │ │ │ └── default │ │ │ │ │ ├── _multiple.scss │ │ │ │ │ ├── _single.scss │ │ │ │ │ └── layout.scss │ │ │ ├── tests │ │ │ │ ├── a11y │ │ │ │ │ └── selection-tests.js │ │ │ │ ├── data │ │ │ │ │ ├── array-tests.js │ │ │ │ │ ├── base-tests.js │ │ │ │ │ ├── inputData-tests.js │ │ │ │ │ ├── maximumInputLength-tests.js │ │ │ │ │ ├── maximumSelectionLength-tests.js │ │ │ │ │ ├── minimumInputLength-tests.js │ │ │ │ │ ├── select-tests.js │ │ │ │ │ └── tags-tests.js │ │ │ │ ├── dropdown │ │ │ │ │ ├── dropdownCss-tests.js │ │ │ │ │ ├── selectOnClose-tests.js │ │ │ │ │ └── stopPropagation-tests.js │ │ │ │ ├── helpers.js │ │ │ │ ├── integration.html │ │ │ │ ├── integration │ │ │ │ │ └── select2-methods.js │ │ │ │ ├── options │ │ │ │ │ ├── data-tests.js │ │ │ │ │ ├── deprecated-tests.js │ │ │ │ │ ├── translation-tests.js │ │ │ │ │ └── width-tests.js │ │ │ │ ├── selection │ │ │ │ │ ├── allowClear-tests.js │ │ │ │ │ ├── containerCss-tests.js │ │ │ │ │ ├── multiple-tests.js │ │ │ │ │ ├── placeholder-tests.js │ │ │ │ │ ├── single-tests.js │ │ │ │ │ └── stopPropagation-tests.js │ │ │ │ ├── unit.html │ │ │ │ ├── utils │ │ │ │ │ ├── decorator-tests.js │ │ │ │ │ └── escapeMarkup-tests.js │ │ │ │ └── vendor │ │ │ │ │ ├── jquery-1.7.2.js │ │ │ │ │ ├── qunit-1.14.0.css │ │ │ │ │ └── qunit-1.14.0.js │ │ │ └── vendor │ │ │ │ ├── almond-0.2.9.js │ │ │ │ ├── jquery-2.1.0.js │ │ │ │ └── jquery.mousewheel.js │ │ ├── selectize │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── dist │ │ │ │ ├── css │ │ │ │ │ ├── selectize.bootstrap2.css │ │ │ │ │ ├── selectize.bootstrap3.css │ │ │ │ │ ├── selectize.css │ │ │ │ │ ├── selectize.default.css │ │ │ │ │ └── selectize.legacy.css │ │ │ │ ├── js │ │ │ │ │ ├── selectize.js │ │ │ │ │ ├── selectize.min.js │ │ │ │ │ └── standalone │ │ │ │ │ │ ├── selectize.js │ │ │ │ │ │ └── selectize.min.js │ │ │ │ └── less │ │ │ │ │ ├── plugins │ │ │ │ │ ├── drag_drop.less │ │ │ │ │ ├── dropdown_header.less │ │ │ │ │ ├── optgroup_columns.less │ │ │ │ │ └── remove_button.less │ │ │ │ │ ├── selectize.bootstrap2.less │ │ │ │ │ ├── selectize.bootstrap3.less │ │ │ │ │ ├── selectize.default.less │ │ │ │ │ ├── selectize.legacy.less │ │ │ │ │ └── selectize.less │ │ │ └── karma.conf.js │ │ └── sifter │ │ │ ├── .bower.json │ │ │ ├── .gitignore │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── package.json │ │ │ ├── sifter.js │ │ │ └── sifter.min.js │ ├── css │ │ ├── animate.css │ │ ├── app.css │ │ ├── base.css │ │ ├── buttons.css │ │ ├── grid │ │ │ ├── demo.css │ │ │ ├── grd.css │ │ │ └── wallgrid.css │ │ ├── index.html │ │ ├── inventive.css │ │ ├── kara.css │ │ ├── loader.css │ │ ├── market.css │ │ ├── materialicon.css │ │ ├── megamenu.css │ │ ├── nav │ │ │ ├── nav.css │ │ │ └── navold.css │ │ ├── plans.css │ │ ├── rudra.css │ │ ├── sliders-theme.css │ │ ├── sliders.css │ │ └── tables │ │ │ └── tables.css │ ├── htc │ │ └── csshover3.htc │ ├── ico │ │ ├── apple-touch-icon-114-precomposed.png │ │ ├── apple-touch-icon-144-precomposed.png │ │ ├── apple-touch-icon-57-precomposed.png │ │ ├── apple-touch-icon-72-precomposed.png │ │ └── favicon.png │ ├── js │ │ ├── app.js │ │ ├── bootstrap-wysiwyg.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── cart │ │ │ ├── angular-cookies.min.js.map │ │ │ ├── angular.min.js.map │ │ │ ├── angularjs.1.2.4.min.js │ │ │ ├── angularjs.cookies.1.2.4.min.js │ │ │ └── shared.js │ │ ├── components │ │ │ ├── colorpicker.js │ │ │ ├── doc │ │ │ │ ├── dist │ │ │ │ │ └── js │ │ │ │ │ │ └── min │ │ │ │ │ │ ├── colorpicker.min.js │ │ │ │ │ │ ├── modal.min.js │ │ │ │ │ │ ├── sidemenu.min.js │ │ │ │ │ │ ├── slider.min.js │ │ │ │ │ │ └── sliders.min.js │ │ │ │ └── js │ │ │ │ │ └── min │ │ │ │ │ ├── colorpicker.min.js │ │ │ │ │ ├── modal.min.js │ │ │ │ │ ├── sidemenu.min.js │ │ │ │ │ ├── slider.min.js │ │ │ │ │ └── sliders.min.js │ │ │ ├── modal.js │ │ │ ├── sidemenu.js │ │ │ ├── slider.js │ │ │ └── sliders.js │ │ ├── datepicker.js │ │ ├── doc │ │ │ ├── dist │ │ │ │ └── js │ │ │ │ │ └── min │ │ │ │ │ ├── datepicker.min.js │ │ │ │ │ ├── herotabs.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── nav.min.js │ │ │ │ │ ├── navbar.min.js │ │ │ │ │ ├── stabs.min.js │ │ │ │ │ └── sticky.min.js │ │ │ └── js │ │ │ │ └── min │ │ │ │ ├── datepicker.min.js │ │ │ │ ├── doubletaptogo.min.js │ │ │ │ ├── easytabs.min.js │ │ │ │ ├── herotabs.min.js │ │ │ │ ├── jquery-1.7.2.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── nav.min.js │ │ │ │ ├── navbar.min.js │ │ │ │ ├── sliders.min.js │ │ │ │ ├── stabs.min.js │ │ │ │ ├── sticky.min.js │ │ │ │ ├── tabs.min.js │ │ │ │ └── tabs2.min.js │ │ ├── filesaver.js │ │ ├── herotabs.js │ │ ├── holder.js │ │ ├── holder.min.js │ │ ├── html5shiv.js │ │ ├── index.html │ │ ├── jquery.js │ │ ├── jszip.js │ │ ├── less.js │ │ ├── nav.js │ │ ├── navbar.js │ │ ├── respond.min.js │ │ ├── sliders.js │ │ ├── stabs.js │ │ ├── sticky.js │ │ └── uglify.js │ └── plugins │ │ ├── CaptionHoverEffects │ │ ├── README.md │ │ ├── css │ │ │ ├── component.css │ │ │ └── default.css │ │ ├── fonts │ │ │ └── codropsicons │ │ │ │ ├── codropsicons.eot │ │ │ │ ├── codropsicons.svg │ │ │ │ ├── codropsicons.ttf │ │ │ │ ├── codropsicons.woff │ │ │ │ └── license.txt │ │ ├── images │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ └── 6.png │ │ ├── index.html │ │ ├── index2.html │ │ ├── index3.html │ │ ├── index4.html │ │ ├── index5.html │ │ ├── index6.html │ │ ├── index7.html │ │ └── js │ │ │ ├── modernizr.custom.js │ │ │ └── toucheffects.js │ │ ├── bootstrap-select │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bootstrap-select.jquery.json │ │ ├── bower.json │ │ ├── css │ │ │ ├── bootstrap-select.css │ │ │ └── bootstrap-select.min.css │ │ ├── js │ │ │ ├── bootstrap-select.js │ │ │ └── bootstrap-select.min.js │ │ ├── package.json │ │ └── test.html │ │ ├── fancybox │ │ ├── blank.gif │ │ ├── fancybox_loading.gif │ │ ├── fancybox_loading@2x.gif │ │ ├── fancybox_overlay.png │ │ ├── fancybox_sprite.png │ │ ├── fancybox_sprite@2x.png │ │ └── jquery.fancybox.css │ │ ├── jquery-file-upload-8.8.5 │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── angularjs.html │ │ ├── basic-plus.html │ │ ├── basic.html │ │ ├── blueimp-file-upload.jquery.json │ │ ├── bower.json │ │ ├── cors │ │ │ ├── postmessage.html │ │ │ └── result.html │ │ ├── css │ │ │ ├── demo-ie8.css │ │ │ ├── demo.css │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ ├── jquery.fileupload-ui.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── loading.gif │ │ │ └── progressbar.gif │ │ ├── index.html │ │ ├── jquery-ui.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── canvas-to-blob.min.js │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── jquery.fileupload-angular.js │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-jquery-ui.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.iframe-transport.js │ │ │ ├── load-image.min.js │ │ │ ├── main.js │ │ │ └── vendor │ │ │ │ └── jquery.ui.widget.js │ │ ├── package.json │ │ ├── server │ │ │ ├── gae-go │ │ │ │ ├── app.yaml │ │ │ │ ├── app │ │ │ │ │ └── main.go │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── gae-python │ │ │ │ ├── app.yaml │ │ │ │ ├── main.py │ │ │ │ └── static │ │ │ │ │ ├── favicon.ico │ │ │ │ │ └── robots.txt │ │ │ ├── node │ │ │ │ ├── .gitignore │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ └── files │ │ │ │ │ │ └── .gitignore │ │ │ │ ├── server.js │ │ │ │ └── tmp │ │ │ │ │ └── .gitignore │ │ │ └── php │ │ │ │ ├── UploadHandler.php │ │ │ │ ├── files │ │ │ │ ├── .gitignore │ │ │ │ └── .htaccess │ │ │ │ └── index.php │ │ └── test │ │ │ ├── index.html │ │ │ └── test.js │ │ ├── jquery-validate │ │ ├── css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.min.css │ │ │ └── validate.css │ │ ├── img │ │ │ ├── error.png │ │ │ └── valid.png │ │ ├── index.html │ │ └── js │ │ │ ├── jquery-1.7.1.min.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ └── validate.js │ │ ├── pagedown │ │ ├── pagedown.css │ │ └── pagedown.min.js │ │ ├── raty-2.5.2 │ │ ├── .gitignore │ │ ├── README.md │ │ ├── changelog.md │ │ ├── demo │ │ │ ├── css │ │ │ │ ├── application.css │ │ │ │ ├── common.css │ │ │ │ ├── demo.css │ │ │ │ ├── font-awesome.css │ │ │ │ ├── normalize.css │ │ │ │ └── pygments.css │ │ │ ├── font │ │ │ │ └── fontawesome-webfont.ttf │ │ │ ├── img │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── cancel-custom-off.png │ │ │ │ ├── cancel-custom-on.png │ │ │ │ ├── cancel-off-big.png │ │ │ │ ├── cancel-on-big.png │ │ │ │ ├── cookie-half.png │ │ │ │ ├── cookie-off.png │ │ │ │ ├── cookie-on.png │ │ │ │ ├── off.png │ │ │ │ ├── on.png │ │ │ │ ├── star-half-big.png │ │ │ │ ├── star-off-big.png │ │ │ │ └── star-on-big.png │ │ │ └── js │ │ │ │ └── jquery.min.js │ │ ├── index.html │ │ ├── js │ │ │ ├── img │ │ │ │ ├── cancel-off.png │ │ │ │ ├── cancel-on.png │ │ │ │ ├── star-half.png │ │ │ │ ├── star-off.png │ │ │ │ └── star-on.png │ │ │ ├── jquery.raty.js │ │ │ └── jquery.raty.min.js │ │ └── spec │ │ │ ├── lib │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine-jquery.js │ │ │ ├── jasmine.css │ │ │ └── jasmine.js │ │ │ ├── run.html │ │ │ └── spec.js │ │ └── tagmanager │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── TagManager.jquery.json │ │ ├── css │ │ └── tagmanager.css │ │ ├── docs │ │ ├── docs.css │ │ └── docs.html │ │ ├── jquery.tagsmanager.d.ts │ │ ├── js │ │ └── tagmanager.js │ │ ├── license.txt │ │ ├── package.json │ │ └── tagmanager.less ├── lang │ └── en │ │ ├── about.php │ │ ├── cart.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ └── validation.php └── views │ ├── abouts │ ├── about.php │ ├── aboutnav.php │ ├── footercontent.php │ ├── newsletter.php │ └── support.blade.php │ ├── admin │ ├── admin.blade.php │ ├── common │ │ ├── footer.blade.php │ │ └── header.blade.php │ ├── components │ │ └── select │ │ │ ├── select_dynamic.blade.php │ │ │ └── select_static.blade.php │ └── products │ │ ├── create.blade.php │ │ ├── dashboard.blade.php │ │ ├── dashboardinner.blade.php │ │ ├── edit.blade.php │ │ ├── fields.blade.php │ │ ├── index.blade.php │ │ ├── show.blade.php │ │ └── single.blade.php │ ├── app.blade.php │ ├── auth │ ├── login.blade.php │ ├── password.blade.php │ ├── register.blade.php │ └── reset.blade.php │ ├── billings │ ├── create.blade.php │ ├── edit.blade.php │ ├── fields.blade.php │ ├── index.blade.php │ └── show.blade.php │ ├── blog │ ├── index.blade.php │ └── page.blade.php │ ├── cart │ ├── base.php │ ├── basket.blade.php │ ├── cart.blade.php │ ├── currentcart.php │ ├── index.blade.php │ └── mycart.php │ ├── common │ └── errors.blade.php │ ├── emails │ ├── auth │ │ └── reminder.blade.php │ ├── invoice.blade.php │ ├── password.blade.php │ └── wrapper.blade.php │ ├── errors │ ├── 404.blade.php │ ├── 503.blade.php │ ├── error.blade.php │ ├── error_backend.blade.php │ ├── error_frontend.blade.php │ ├── missing.blade.php │ ├── missing_backend.blade.php │ └── missing_frontend.blade.php │ ├── home.blade.php │ ├── home │ ├── index.blade.php │ └── page.blade.php │ ├── kblayouts │ ├── admin.blade.php │ ├── footer.blade.php │ ├── header.blade.php │ └── main.blade.php │ ├── kg │ ├── categories.blade.php │ ├── index.blade.php │ └── page.blade.php │ ├── layout.blade.php │ ├── layouts │ ├── admin.blade.php │ ├── footer.blade.php │ ├── header.blade.php │ └── main.blade.php │ ├── products │ ├── index.blade.php │ ├── product.blade.php │ └── single.blade.php │ ├── users │ ├── dashboard.blade.php │ └── profile.blade.php │ ├── vendor │ ├── .gitkeep │ ├── flash │ │ ├── message.blade.php │ │ └── modal.blade.php │ └── sitemap │ │ ├── html.php │ │ ├── ror-rdf.php │ │ ├── ror-rss.php │ │ ├── sitemapindex.php │ │ ├── txt.php │ │ └── xml.php │ ├── welcome.blade.php │ └── wishlists │ ├── create.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ └── show.blade.php ├── server.php ├── storage ├── .gitignore ├── app │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── ExampleTest.php └── TestCase.php └── vendor ├── autoload.php ├── classpreloader └── classpreloader │ └── composer.json ├── composer ├── ClassLoader.php ├── autoload_classmap.php ├── autoload_files.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php └── installed.json ├── jeremeamia └── SuperClosure │ ├── LICENSE.md │ └── composer.json ├── laravel └── framework │ ├── CONTRIBUTING.md │ ├── LICENSE.txt │ ├── composer.json │ ├── readme.md │ └── src │ └── Illuminate │ ├── Auth │ ├── AuthManager.php │ ├── AuthServiceProvider.php │ ├── DatabaseUserProvider.php │ ├── EloquentUserProvider.php │ ├── GenericUser.php │ ├── Guard.php │ └── composer.json │ ├── Cache │ ├── ApcStore.php │ ├── ApcWrapper.php │ ├── ArrayStore.php │ ├── CacheManager.php │ ├── CacheServiceProvider.php │ ├── Console │ │ └── ClearCommand.php │ ├── DatabaseStore.php │ ├── FileStore.php │ ├── MemcachedConnector.php │ ├── MemcachedStore.php │ ├── RedisStore.php │ ├── RedisTaggedCache.php │ ├── Repository.php │ ├── TagSet.php │ ├── TaggableStore.php │ ├── TaggedCache.php │ ├── WinCacheStore.php │ ├── XCacheStore.php │ └── composer.json │ ├── Config │ ├── Repository.php │ └── composer.json │ ├── Console │ ├── Application.php │ ├── Command.php │ └── composer.json │ ├── Container │ ├── Container.php │ └── composer.json │ ├── Cookie │ ├── CookieJar.php │ ├── CookieServiceProvider.php │ └── composer.json │ ├── Database │ ├── Capsule │ │ └── Manager.php │ ├── Connection.php │ ├── ConnectionInterface.php │ ├── ConnectionResolver.php │ ├── ConnectionResolverInterface.php │ ├── Connectors │ │ ├── ConnectionFactory.php │ │ ├── Connector.php │ │ ├── ConnectorInterface.php │ │ ├── MySqlConnector.php │ │ ├── PostgresConnector.php │ │ ├── SQLiteConnector.php │ │ └── SqlServerConnector.php │ ├── Console │ │ └── Migrations │ │ │ ├── BaseCommand.php │ │ │ ├── InstallCommand.php │ │ │ ├── MigrateCommand.php │ │ │ ├── MigrateMakeCommand.php │ │ │ ├── RefreshCommand.php │ │ │ ├── ResetCommand.php │ │ │ └── RollbackCommand.php │ ├── DatabaseManager.php │ ├── DatabaseServiceProvider.php │ ├── Eloquent │ │ ├── Builder.php │ │ ├── Collection.php │ │ ├── MassAssignmentException.php │ │ ├── Model.php │ │ ├── ModelNotFoundException.php │ │ └── Relations │ │ │ ├── BelongsTo.php │ │ │ ├── BelongsToMany.php │ │ │ ├── HasMany.php │ │ │ ├── HasManyThrough.php │ │ │ ├── HasOne.php │ │ │ ├── HasOneOrMany.php │ │ │ ├── MorphMany.php │ │ │ ├── MorphOne.php │ │ │ ├── MorphOneOrMany.php │ │ │ ├── MorphPivot.php │ │ │ ├── MorphTo.php │ │ │ ├── MorphToMany.php │ │ │ ├── Pivot.php │ │ │ └── Relation.php │ ├── Grammar.php │ ├── MigrationServiceProvider.php │ ├── Migrations │ │ ├── DatabaseMigrationRepository.php │ │ ├── Migration.php │ │ ├── MigrationCreator.php │ │ ├── MigrationRepositoryInterface.php │ │ ├── Migrator.php │ │ └── stubs │ │ │ ├── blank.stub │ │ │ ├── create.stub │ │ │ └── update.stub │ ├── MySqlConnection.php │ ├── PostgresConnection.php │ ├── Query │ │ ├── Builder.php │ │ ├── Expression.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ ├── JoinClause.php │ │ └── Processors │ │ │ ├── MySqlProcessor.php │ │ │ ├── PostgresProcessor.php │ │ │ ├── Processor.php │ │ │ ├── SQLiteProcessor.php │ │ │ └── SqlServerProcessor.php │ ├── QueryException.php │ ├── README.md │ ├── SQLiteConnection.php │ ├── Schema │ │ ├── Blueprint.php │ │ ├── Builder.php │ │ ├── Grammars │ │ │ ├── Grammar.php │ │ │ ├── MySqlGrammar.php │ │ │ ├── PostgresGrammar.php │ │ │ ├── SQLiteGrammar.php │ │ │ └── SqlServerGrammar.php │ │ └── MySqlBuilder.php │ ├── SeedServiceProvider.php │ ├── Seeder.php │ ├── SqlServerConnection.php │ └── composer.json │ ├── Encryption │ ├── Encrypter.php │ ├── EncryptionServiceProvider.php │ └── composer.json │ ├── Events │ ├── Dispatcher.php │ ├── EventServiceProvider.php │ └── composer.json │ ├── Filesystem │ ├── Filesystem.php │ ├── FilesystemServiceProvider.php │ └── composer.json │ ├── Foundation │ ├── AliasLoader.php │ ├── Application.php │ ├── Composer.php │ ├── Console │ │ ├── ClearCompiledCommand.php │ │ ├── CommandMakeCommand.php │ │ ├── DownCommand.php │ │ ├── EnvironmentCommand.php │ │ ├── KeyGenerateCommand.php │ │ ├── Optimize │ │ │ └── config.php │ │ ├── OptimizeCommand.php │ │ ├── ServeCommand.php │ │ ├── TinkerCommand.php │ │ ├── UpCommand.php │ │ └── stubs │ │ │ └── command.stub │ ├── EnvironmentDetector.php │ ├── ProviderRepository.php │ ├── Providers │ │ ├── ArtisanServiceProvider.php │ │ ├── ComposerServiceProvider.php │ │ └── ConsoleSupportServiceProvider.php │ └── Testing │ │ └── TestCase.php │ ├── Hashing │ ├── BcryptHasher.php │ ├── HashServiceProvider.php │ └── composer.json │ ├── Http │ ├── JsonResponse.php │ ├── RedirectResponse.php │ ├── Request.php │ ├── Response.php │ └── composer.json │ ├── Log │ ├── Writer.php │ └── composer.json │ ├── Mail │ ├── MailServiceProvider.php │ ├── Mailer.php │ ├── Message.php │ └── composer.json │ ├── Pagination │ ├── PaginationServiceProvider.php │ ├── Paginator.php │ └── composer.json │ ├── Queue │ ├── BeanstalkdQueue.php │ ├── Capsule │ │ └── Manager.php │ ├── Connectors │ │ ├── BeanstalkdConnector.php │ │ ├── ConnectorInterface.php │ │ ├── IronConnector.php │ │ ├── RedisConnector.php │ │ ├── SqsConnector.php │ │ └── SyncConnector.php │ ├── Console │ │ ├── FailedTableCommand.php │ │ ├── FlushFailedCommand.php │ │ ├── ForgetFailedCommand.php │ │ ├── ListFailedCommand.php │ │ ├── ListenCommand.php │ │ ├── RetryCommand.php │ │ ├── SubscribeCommand.php │ │ ├── WorkCommand.php │ │ └── stubs │ │ │ └── failed_jobs.stub │ ├── Failed │ │ ├── DatabaseFailedJobProvider.php │ │ └── FailedJobProviderInterface.php │ ├── IlluminateQueueClosure.php │ ├── IronQueue.php │ ├── Jobs │ │ ├── BeanstalkdJob.php │ │ ├── IronJob.php │ │ ├── Job.php │ │ ├── RedisJob.php │ │ ├── SqsJob.php │ │ └── SyncJob.php │ ├── Listener.php │ ├── Queue.php │ ├── QueueManager.php │ ├── QueueServiceProvider.php │ ├── README.md │ ├── RedisQueue.php │ ├── SqsQueue.php │ ├── SyncQueue.php │ ├── Worker.php │ └── composer.json │ ├── Redis │ ├── Database.php │ ├── RedisServiceProvider.php │ └── composer.json │ ├── Routing │ ├── Controller.php │ ├── ControllerDispatcher.php │ ├── ControllerInspector.php │ ├── ControllerServiceProvider.php │ ├── Matching │ │ ├── HostValidator.php │ │ ├── MethodValidator.php │ │ ├── SchemeValidator.php │ │ ├── UriValidator.php │ │ └── ValidatorInterface.php │ ├── Redirector.php │ ├── Route.php │ ├── RouteCollection.php │ ├── Router.php │ ├── RoutingServiceProvider.php │ ├── UrlGenerator.php │ └── composer.json │ ├── Session │ ├── CacheBasedSessionHandler.php │ ├── CommandsServiceProvider.php │ ├── Console │ │ ├── SessionTableCommand.php │ │ └── stubs │ │ │ └── database.stub │ ├── CookieSessionHandler.php │ ├── FileSessionHandler.php │ ├── SessionInterface.php │ ├── SessionManager.php │ ├── SessionServiceProvider.php │ ├── Store.php │ ├── TokenMismatchException.php │ └── composer.json │ ├── Support │ ├── ClassLoader.php │ ├── Collection.php │ ├── Facades │ │ ├── App.php │ │ ├── Artisan.php │ │ ├── Auth.php │ │ ├── Blade.php │ │ ├── Cache.php │ │ ├── Config.php │ │ ├── Cookie.php │ │ ├── Crypt.php │ │ ├── DB.php │ │ ├── Event.php │ │ ├── Facade.php │ │ ├── File.php │ │ ├── Hash.php │ │ ├── Input.php │ │ ├── Lang.php │ │ ├── Log.php │ │ ├── Mail.php │ │ ├── Password.php │ │ ├── Queue.php │ │ ├── Redirect.php │ │ ├── Redis.php │ │ ├── Request.php │ │ ├── Response.php │ │ ├── Route.php │ │ ├── Schema.php │ │ ├── Session.php │ │ ├── URL.php │ │ ├── Validator.php │ │ └── View.php │ ├── Fluent.php │ ├── Manager.php │ ├── MessageBag.php │ ├── NamespacedItemResolver.php │ ├── Pluralizer.php │ ├── ServiceProvider.php │ ├── Str.php │ ├── composer.json │ └── helpers.php │ ├── Translation │ ├── FileLoader.php │ ├── LoaderInterface.php │ ├── TranslationServiceProvider.php │ ├── Translator.php │ └── composer.json │ ├── Validation │ ├── DatabasePresenceVerifier.php │ ├── Factory.php │ ├── PresenceVerifierInterface.php │ ├── ValidationServiceProvider.php │ ├── Validator.php │ └── composer.json │ └── View │ ├── Compilers │ ├── BladeCompiler.php │ ├── Compiler.php │ └── CompilerInterface.php │ ├── Engines │ ├── CompilerEngine.php │ ├── Engine.php │ ├── EngineInterface.php │ ├── EngineResolver.php │ └── PhpEngine.php │ ├── FileViewFinder.php │ ├── View.php │ ├── ViewFinderInterface.php │ ├── ViewServiceProvider.php │ └── composer.json ├── monolog └── monolog │ ├── CHANGELOG.mdown │ ├── LICENSE │ ├── README.mdown │ ├── composer.json │ ├── doc │ └── sockets.md │ ├── phpunit.xml.dist │ ├── src │ └── Monolog │ │ ├── ErrorHandler.php │ │ ├── Formatter │ │ ├── ChromePHPFormatter.php │ │ ├── ElasticaFormatter.php │ │ ├── FlowdockFormatter.php │ │ ├── FormatterInterface.php │ │ ├── GelfMessageFormatter.php │ │ ├── HtmlFormatter.php │ │ ├── JsonFormatter.php │ │ ├── LineFormatter.php │ │ ├── LogglyFormatter.php │ │ ├── LogstashFormatter.php │ │ ├── NormalizerFormatter.php │ │ ├── ScalarFormatter.php │ │ └── WildfireFormatter.php │ │ ├── Handler │ │ ├── AbstractHandler.php │ │ ├── AbstractProcessingHandler.php │ │ ├── AbstractSyslogHandler.php │ │ ├── AmqpHandler.php │ │ ├── BrowserConsoleHandler.php │ │ ├── BufferHandler.php │ │ ├── ChromePHPHandler.php │ │ ├── CouchDBHandler.php │ │ ├── CubeHandler.php │ │ ├── DoctrineCouchDBHandler.php │ │ ├── DynamoDbHandler.php │ │ ├── ElasticSearchHandler.php │ │ ├── ErrorLogHandler.php │ │ ├── FilterHandler.php │ │ ├── FingersCrossed │ │ │ ├── ActivationStrategyInterface.php │ │ │ ├── ChannelLevelActivationStrategy.php │ │ │ └── ErrorLevelActivationStrategy.php │ │ ├── FingersCrossedHandler.php │ │ ├── FirePHPHandler.php │ │ ├── FlowdockHandler.php │ │ ├── GelfHandler.php │ │ ├── GroupHandler.php │ │ ├── HandlerInterface.php │ │ ├── HipChatHandler.php │ │ ├── LogEntriesHandler.php │ │ ├── LogglyHandler.php │ │ ├── MailHandler.php │ │ ├── MissingExtensionException.php │ │ ├── MongoDBHandler.php │ │ ├── NativeMailerHandler.php │ │ ├── NewRelicHandler.php │ │ ├── NullHandler.php │ │ ├── PushoverHandler.php │ │ ├── RavenHandler.php │ │ ├── RedisHandler.php │ │ ├── RollbarHandler.php │ │ ├── RotatingFileHandler.php │ │ ├── SlackHandler.php │ │ ├── SocketHandler.php │ │ ├── StreamHandler.php │ │ ├── SwiftMailerHandler.php │ │ ├── SyslogHandler.php │ │ ├── SyslogUdp │ │ │ └── UdpSocket.php │ │ ├── SyslogUdpHandler.php │ │ ├── TestHandler.php │ │ └── ZendMonitorHandler.php │ │ ├── Logger.php │ │ ├── Processor │ │ ├── GitProcessor.php │ │ ├── IntrospectionProcessor.php │ │ ├── MemoryPeakUsageProcessor.php │ │ ├── MemoryProcessor.php │ │ ├── MemoryUsageProcessor.php │ │ ├── ProcessIdProcessor.php │ │ ├── PsrLogMessageProcessor.php │ │ ├── TagProcessor.php │ │ ├── UidProcessor.php │ │ └── WebProcessor.php │ │ └── Registry.php │ └── tests │ └── Monolog │ ├── ErrorHandlerTest.php │ ├── Formatter │ ├── ChromePHPFormatterTest.php │ ├── ElasticaFormatterTest.php │ ├── FlowdockFormatterTest.php │ ├── GelfMessageFormatterTest.php │ ├── JsonFormatterTest.php │ ├── LineFormatterTest.php │ ├── LogglyFormatterTest.php │ ├── LogstashFormatterTest.php │ ├── NormalizerFormatterTest.php │ ├── ScalarFormatterTest.php │ └── WildfireFormatterTest.php │ ├── Handler │ ├── AbstractHandlerTest.php │ ├── AbstractProcessingHandlerTest.php │ ├── AmqpHandlerTest.php │ ├── BrowserConsoleHandlerTest.php │ ├── BufferHandlerTest.php │ ├── ChromePHPHandlerTest.php │ ├── CouchDBHandlerTest.php │ ├── DoctrineCouchDBHandlerTest.php │ ├── DynamoDbHandlerTest.php │ ├── ElasticSearchHandlerTest.php │ ├── ErrorLogHandlerTest.php │ ├── FilterHandlerTest.php │ ├── FingersCrossedHandlerTest.php │ ├── FirePHPHandlerTest.php │ ├── Fixtures │ │ └── .gitkeep │ ├── FlowdockHandlerTest.php │ ├── GelfHandlerLegacyTest.php │ ├── GelfHandlerTest.php │ ├── GroupHandlerTest.php │ ├── HipChatHandlerTest.php │ ├── LogEntriesHandlerTest.php │ ├── MailHandlerTest.php │ ├── MockRavenClient.php │ ├── MongoDBHandlerTest.php │ ├── NativeMailerHandlerTest.php │ ├── NewRelicHandlerTest.php │ ├── NullHandlerTest.php │ ├── PushoverHandlerTest.php │ ├── RavenHandlerTest.php │ ├── RedisHandlerTest.php │ ├── RotatingFileHandlerTest.php │ ├── SlackHandlerTest.php │ ├── SocketHandlerTest.php │ ├── StreamHandlerTest.php │ ├── SyslogHandlerTest.php │ ├── SyslogUdpHandlerTest.php │ ├── TestHandlerTest.php │ ├── UdpSocketTest.php │ └── ZendMonitorHandlerTest.php │ ├── LoggerTest.php │ ├── Processor │ ├── GitProcessorTest.php │ ├── IntrospectionProcessorTest.php │ ├── MemoryPeakUsageProcessorTest.php │ ├── MemoryUsageProcessorTest.php │ ├── ProcessIdProcessorTest.php │ ├── TagProcessorTest.php │ ├── UidProcessorTest.php │ └── WebProcessorTest.php │ ├── PsrLogCompatTest.php │ └── TestCase.php ├── nesbot └── carbon │ ├── LICENSE │ ├── composer.json │ ├── readme.md │ └── src │ └── Carbon │ └── Carbon.php ├── nikic └── php-parser │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── grammar │ ├── README.md │ ├── analyze.php │ ├── kmyacc.php.parser │ ├── rebuildParser.php │ └── zend_language_parser.phpy │ ├── lib │ └── bootstrap.php │ └── phpunit.xml.dist ├── psr └── log │ ├── .gitignore │ ├── LICENSE │ ├── Psr │ └── Log │ │ ├── AbstractLogger.php │ │ ├── InvalidArgumentException.php │ │ ├── LogLevel.php │ │ ├── LoggerAwareInterface.php │ │ ├── LoggerAwareTrait.php │ │ ├── LoggerInterface.php │ │ ├── LoggerTrait.php │ │ ├── NullLogger.php │ │ └── Test │ │ └── LoggerInterfaceTest.php │ ├── README.md │ └── composer.json └── swiftmailer └── swiftmailer ├── .gitattributes ├── .gitignore ├── .travis.yml ├── CHANGES ├── LICENSE ├── README ├── VERSION ├── composer.json ├── doc ├── headers.rst ├── help-resources.rst ├── including-the-files.rst ├── index.rst ├── installing.rst ├── introduction.rst ├── japanese.rst ├── messages.rst ├── overview.rst ├── plugins.rst ├── sending.rst └── uml │ ├── Encoders.graffle │ ├── Mime.graffle │ └── Transports.graffle ├── lib ├── classes │ ├── Swift.php │ └── Swift │ │ ├── Attachment.php │ │ ├── ByteStream │ │ ├── AbstractFilterableInputStream.php │ │ ├── ArrayByteStream.php │ │ ├── FileByteStream.php │ │ └── TemporaryFileByteStream.php │ │ ├── CharacterReader.php │ │ ├── CharacterReader │ │ ├── GenericFixedWidthReader.php │ │ ├── UsAsciiReader.php │ │ └── Utf8Reader.php │ │ ├── CharacterReaderFactory.php │ │ ├── CharacterReaderFactory │ │ └── SimpleCharacterReaderFactory.php │ │ ├── CharacterStream.php │ │ ├── CharacterStream │ │ ├── ArrayCharacterStream.php │ │ └── NgCharacterStream.php │ │ ├── ConfigurableSpool.php │ │ ├── DependencyContainer.php │ │ ├── DependencyException.php │ │ ├── EmbeddedFile.php │ │ ├── Encoder.php │ │ ├── Encoder │ │ ├── Base64Encoder.php │ │ ├── QpEncoder.php │ │ └── Rfc2231Encoder.php │ │ ├── Encoding.php │ │ ├── Events │ │ ├── CommandEvent.php │ │ ├── CommandListener.php │ │ ├── Event.php │ │ ├── EventDispatcher.php │ │ ├── EventListener.php │ │ ├── EventObject.php │ │ ├── ResponseEvent.php │ │ ├── ResponseListener.php │ │ ├── SendEvent.php │ │ ├── SendListener.php │ │ ├── SimpleEventDispatcher.php │ │ ├── TransportChangeEvent.php │ │ ├── TransportChangeListener.php │ │ ├── TransportExceptionEvent.php │ │ └── TransportExceptionListener.php │ │ ├── FailoverTransport.php │ │ ├── FileSpool.php │ │ ├── FileStream.php │ │ ├── Filterable.php │ │ ├── Image.php │ │ ├── InputByteStream.php │ │ ├── IoException.php │ │ ├── KeyCache.php │ │ ├── KeyCache │ │ ├── ArrayKeyCache.php │ │ ├── DiskKeyCache.php │ │ ├── KeyCacheInputStream.php │ │ ├── NullKeyCache.php │ │ └── SimpleKeyCacheInputStream.php │ │ ├── LoadBalancedTransport.php │ │ ├── MailTransport.php │ │ ├── Mailer.php │ │ ├── Mailer │ │ ├── ArrayRecipientIterator.php │ │ └── RecipientIterator.php │ │ ├── MemorySpool.php │ │ ├── Message.php │ │ ├── Mime │ │ ├── Attachment.php │ │ ├── CharsetObserver.php │ │ ├── ContentEncoder.php │ │ ├── ContentEncoder │ │ │ ├── Base64ContentEncoder.php │ │ │ ├── NativeQpContentEncoder.php │ │ │ ├── PlainContentEncoder.php │ │ │ ├── QpContentEncoder.php │ │ │ ├── QpContentEncoderProxy.php │ │ │ └── RawContentEncoder.php │ │ ├── EmbeddedFile.php │ │ ├── EncodingObserver.php │ │ ├── Grammar.php │ │ ├── Header.php │ │ ├── HeaderEncoder.php │ │ ├── HeaderEncoder │ │ │ ├── Base64HeaderEncoder.php │ │ │ └── QpHeaderEncoder.php │ │ ├── HeaderFactory.php │ │ ├── HeaderSet.php │ │ ├── Headers │ │ │ ├── AbstractHeader.php │ │ │ ├── DateHeader.php │ │ │ ├── IdentificationHeader.php │ │ │ ├── MailboxHeader.php │ │ │ ├── OpenDKIMHeader.php │ │ │ ├── ParameterizedHeader.php │ │ │ ├── PathHeader.php │ │ │ └── UnstructuredHeader.php │ │ ├── Message.php │ │ ├── MimeEntity.php │ │ ├── MimePart.php │ │ ├── ParameterizedHeader.php │ │ ├── SimpleHeaderFactory.php │ │ ├── SimpleHeaderSet.php │ │ ├── SimpleMessage.php │ │ └── SimpleMimeEntity.php │ │ ├── MimePart.php │ │ ├── NullTransport.php │ │ ├── OutputByteStream.php │ │ ├── Plugins │ │ ├── AntiFloodPlugin.php │ │ ├── BandwidthMonitorPlugin.php │ │ ├── Decorator │ │ │ └── Replacements.php │ │ ├── DecoratorPlugin.php │ │ ├── ImpersonatePlugin.php │ │ ├── Logger.php │ │ ├── LoggerPlugin.php │ │ ├── Loggers │ │ │ ├── ArrayLogger.php │ │ │ └── EchoLogger.php │ │ ├── MessageLogger.php │ │ ├── Pop │ │ │ ├── Pop3Connection.php │ │ │ └── Pop3Exception.php │ │ ├── PopBeforeSmtpPlugin.php │ │ ├── RedirectingPlugin.php │ │ ├── Reporter.php │ │ ├── ReporterPlugin.php │ │ ├── Reporters │ │ │ ├── HitReporter.php │ │ │ └── HtmlReporter.php │ │ ├── Sleeper.php │ │ ├── ThrottlerPlugin.php │ │ └── Timer.php │ │ ├── Preferences.php │ │ ├── ReplacementFilterFactory.php │ │ ├── RfcComplianceException.php │ │ ├── SendmailTransport.php │ │ ├── SignedMessage.php │ │ ├── Signer.php │ │ ├── Signers │ │ ├── BodySigner.php │ │ ├── DKIMSigner.php │ │ ├── DomainKeySigner.php │ │ ├── HeaderSigner.php │ │ ├── OpenDKIMSigner.php │ │ └── SMimeSigner.php │ │ ├── SmtpTransport.php │ │ ├── Spool.php │ │ ├── SpoolTransport.php │ │ ├── StreamFilter.php │ │ ├── StreamFilters │ │ ├── ByteArrayReplacementFilter.php │ │ ├── StringReplacementFilter.php │ │ └── StringReplacementFilterFactory.php │ │ ├── SwiftException.php │ │ ├── Transport.php │ │ ├── Transport │ │ ├── AbstractSmtpTransport.php │ │ ├── Esmtp │ │ │ ├── Auth │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ └── XOAuth2Authenticator.php │ │ │ ├── AuthHandler.php │ │ │ └── Authenticator.php │ │ ├── EsmtpHandler.php │ │ ├── EsmtpTransport.php │ │ ├── FailoverTransport.php │ │ ├── IoBuffer.php │ │ ├── LoadBalancedTransport.php │ │ ├── MailInvoker.php │ │ ├── MailTransport.php │ │ ├── NullTransport.php │ │ ├── SendmailTransport.php │ │ ├── SimpleMailInvoker.php │ │ ├── SmtpAgent.php │ │ ├── SpoolTransport.php │ │ └── StreamBuffer.php │ │ ├── TransportException.php │ │ └── Validate.php ├── dependency_maps │ ├── cache_deps.php │ ├── message_deps.php │ ├── mime_deps.php │ └── transport_deps.php ├── mime_types.php ├── preferences.php ├── swift_init.php ├── swift_required.php ├── swift_required_pear.php └── swiftmailer_generate_mimes_config.php ├── phpunit.xml.dist └── tests ├── IdenticalBinaryConstraint.php ├── StreamCollector.php ├── SwiftMailerSmokeTestCase.php ├── SwiftMailerTestCase.php ├── _samples ├── charsets │ ├── iso-2022-jp │ │ └── one.txt │ ├── iso-8859-1 │ │ └── one.txt │ └── utf-8 │ │ ├── one.txt │ │ ├── three.txt │ │ └── two.txt ├── dkim │ ├── dkim.test.priv │ └── dkim.test.pub ├── files │ ├── data.txt │ └── textfile.zip └── smime │ ├── CA.srl │ ├── ca.crt │ ├── ca.key │ ├── create-cert.sh │ ├── encrypt.crt │ ├── encrypt.key │ ├── encrypt2.crt │ ├── encrypt2.key │ ├── sign.crt │ └── sign.key ├── acceptance.conf.php.default ├── acceptance └── Swift │ ├── AttachmentAcceptanceTest.php │ ├── ByteStream │ └── FileByteStreamAcceptanceTest.php │ ├── CharacterReaderFactory │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ ├── DependencyContainerAcceptanceTest.php │ ├── EmbeddedFileAcceptanceTest.php │ ├── Encoder │ ├── Base64EncoderAcceptanceTest.php │ ├── QpEncoderAcceptanceTest.php │ └── Rfc2231EncoderAcceptanceTest.php │ ├── EncodingAcceptanceTest.php │ ├── KeyCache │ ├── ArrayKeyCacheAcceptanceTest.php │ └── DiskKeyCacheAcceptanceTest.php │ ├── MessageAcceptanceTest.php │ ├── Mime │ ├── AttachmentAcceptanceTest.php │ ├── ContentEncoder │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ ├── NativeQpContentEncoderAcceptanceTest.php │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ └── QpContentEncoderAcceptanceTest.php │ ├── EmbeddedFileAcceptanceTest.php │ ├── HeaderEncoder │ │ └── Base64HeaderEncoderAcceptanceTest.php │ ├── MimePartAcceptanceTest.php │ └── SimpleMessageAcceptanceTest.php │ ├── MimePartAcceptanceTest.php │ └── Transport │ └── StreamBuffer │ ├── AbstractStreamBufferAcceptanceTest.php │ ├── BasicSocketAcceptanceTest.php │ ├── ProcessAcceptanceTest.php │ ├── SocketTimeoutTest.php │ ├── SslSocketAcceptanceTest.php │ └── TlsSocketAcceptanceTest.php ├── bootstrap.php ├── bug └── Swift │ ├── Bug111Test.php │ ├── Bug118Test.php │ ├── Bug206Test.php │ ├── Bug274Test.php │ ├── Bug34Test.php │ ├── Bug35Test.php │ ├── Bug38Test.php │ ├── Bug51Test.php │ ├── Bug71Test.php │ └── Bug76Test.php ├── fixtures ├── EsmtpTransportFixture.php └── MimeEntityFixture.php ├── smoke.conf.php.default ├── smoke └── Swift │ └── Smoke │ ├── AttachmentSmokeTest.php │ ├── BasicSmokeTest.php │ ├── HtmlWithAttachmentSmokeTest.php │ └── InternationalSmokeTest.php └── unit └── Swift ├── ByteStream └── ArrayByteStreamTest.php ├── CharacterReader ├── GenericFixedWidthReaderTest.php ├── UsAsciiReaderTest.php └── Utf8ReaderTest.php ├── CharacterStream └── ArrayCharacterStreamTest.php ├── DependencyContainerTest.php ├── Encoder ├── Base64EncoderTest.php ├── QpEncoderTest.php └── Rfc2231EncoderTest.php ├── Events ├── CommandEventTest.php ├── EventObjectTest.php ├── ResponseEventTest.php ├── SendEventTest.php ├── SimpleEventDispatcherTest.php ├── TransportChangeEventTest.php └── TransportExceptionEventTest.php ├── KeyCache ├── ArrayKeyCacheTest.php └── SimpleKeyCacheInputStreamTest.php ├── Mailer └── ArrayRecipientIteratorTest.php ├── MailerTest.php ├── Mime ├── AbstractMimeEntityTest.php ├── AttachmentTest.php ├── ContentEncoder │ ├── Base64ContentEncoderTest.php │ ├── PlainContentEncoderTest.php │ └── QpContentEncoderTest.php ├── EmbeddedFileTest.php ├── HeaderEncoder │ ├── Base64HeaderEncoderTest.php │ └── QpHeaderEncoderTest.php ├── Headers │ ├── DateHeaderTest.php │ ├── IdentificationHeaderTest.php │ ├── MailboxHeaderTest.php │ ├── ParameterizedHeaderTest.php │ ├── PathHeaderTest.php │ └── UnstructuredHeaderTest.php ├── MimePartTest.php ├── SimpleHeaderFactoryTest.php ├── SimpleHeaderSetTest.php ├── SimpleMessageTest.php └── SimpleMimeEntityTest.php ├── Plugins ├── AntiFloodPluginTest.php ├── BandwidthMonitorPluginTest.php ├── DecoratorPluginTest.php ├── LoggerPluginTest.php ├── Loggers │ ├── ArrayLoggerTest.php │ └── EchoLoggerTest.php ├── PopBeforeSmtpPluginTest.php ├── RedirectingPluginTest.php ├── ReporterPluginTest.php ├── Reporters │ ├── HitReporterTest.php │ └── HtmlReporterTest.php └── ThrottlerPluginTest.php ├── Signers ├── DKIMSignerTest.php ├── OpenDKIMSignerTest.php └── SMimeSignerTest.php ├── StreamFilters ├── ByteArrayReplacementFilterTest.php ├── StringReplacementFilterFactoryTest.php └── StringReplacementFilterTest.php └── Transport ├── AbstractSmtpEventSupportTest.php ├── AbstractSmtpTest.php ├── Esmtp ├── Auth │ ├── CramMd5AuthenticatorTest.php │ ├── LoginAuthenticatorTest.php │ ├── NTLMAuthenticatorTest.php │ └── PlainAuthenticatorTest.php └── AuthHandlerTest.php ├── EsmtpTransport └── ExtensionSupportTest.php ├── EsmtpTransportTest.php ├── FailoverTransportTest.php ├── LoadBalancedTransportTest.php ├── MailTransportTest.php ├── SendmailTransportTest.php └── StreamBufferTest.php /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | LaravelMart -------------------------------------------------------------------------------- /.idea/LaravelMart.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/.idea/LaravelMart.iml -------------------------------------------------------------------------------- /.idea/blade.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/.idea/blade.xml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/LICENSE -------------------------------------------------------------------------------- /Project.KWI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/Project.KWI -------------------------------------------------------------------------------- /ToDo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/ToDo -------------------------------------------------------------------------------- /app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Console/Commands/Inspire.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Helpers/Common.php -------------------------------------------------------------------------------- /app/Http/Controllers/AboutController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/AboutController.php -------------------------------------------------------------------------------- /app/Http/Controllers/AddressController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/AddressController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ApiController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/ApiController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/Auth/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/Auth/PasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/Backend/AdminController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Backend/ListController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/Backend/ListController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BillingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/BillingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BlogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/BlogController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CartController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/CartController.php -------------------------------------------------------------------------------- /app/Http/Controllers/CategoryController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/CategoryController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/CoreController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/CoreController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/IndexController.php -------------------------------------------------------------------------------- /app/Http/Controllers/OrderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/OrderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/PageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProductsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/ProductsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/UsersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/WelcomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/WelcomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/WishlistController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Controllers/WishlistController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/CreateBillingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Requests/CreateBillingRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CreateProductRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Requests/CreateProductRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/Requests/Request.php -------------------------------------------------------------------------------- /app/Http/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Http/routes.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Libraries/Repositories/BillingRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Libraries/Repositories/BillingRepository.php -------------------------------------------------------------------------------- /app/Libraries/Repositories/ProductRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Libraries/Repositories/ProductRepository.php -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/Billing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Billing.php -------------------------------------------------------------------------------- /app/Models/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Blog.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Coupon.php -------------------------------------------------------------------------------- /app/Models/Email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Email.php -------------------------------------------------------------------------------- /app/Models/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Menu.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/OrderItem.php -------------------------------------------------------------------------------- /app/Models/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Page.php -------------------------------------------------------------------------------- /app/Models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Permission.php -------------------------------------------------------------------------------- /app/Models/Permission_role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Permission_role.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/Role_user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Role_user.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Models/Wishlist.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BusServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Providers/BusServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ConfigServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Providers/ConfigServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Services/Crud/CrudFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Services/Crud/CrudFactory.php -------------------------------------------------------------------------------- /app/Services/Crud/CrudServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Services/Crud/CrudServiceProvider.php -------------------------------------------------------------------------------- /app/Services/Crud/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Services/Crud/Select.php -------------------------------------------------------------------------------- /app/Services/Html/FormBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Services/Html/FormBuilder.php -------------------------------------------------------------------------------- /app/Services/Html/HtmlServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Services/Html/HtmlServiceProvider.php -------------------------------------------------------------------------------- /app/Services/Registrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Services/Registrar.php -------------------------------------------------------------------------------- /app/Services/Validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/Services/Validation.php -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/app/User.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/compile.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/database.php -------------------------------------------------------------------------------- /config/entrust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/entrust.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/generator.php -------------------------------------------------------------------------------- /config/laravelmart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/laravelmart.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/session.php -------------------------------------------------------------------------------- /config/sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/sitemap.php -------------------------------------------------------------------------------- /config/tagging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/tagging.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/2013_08_21_000000_CreateTokenTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/migrations/2013_08_21_000000_CreateTokenTable.php -------------------------------------------------------------------------------- /database/migrations/2013_12_03_000000_CreateOrderTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/migrations/2013_12_03_000000_CreateOrderTable.php -------------------------------------------------------------------------------- /database/migrations/2014_01_07_073615_create_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/migrations/2014_01_07_073615_create_tags_table.php -------------------------------------------------------------------------------- /database/migrations/2015_06_14_000000_create_menu_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/migrations/2015_06_14_000000_create_menu_table.php -------------------------------------------------------------------------------- /database/migrations/2015_06_14_110000_create_page_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/migrations/2015_06_14_110000_create_page_table.php -------------------------------------------------------------------------------- /database/migrations/2015_09_18_110000_create_blog_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/migrations/2015_09_18_110000_create_blog_table.php -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/BlogTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/BlogTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/CategoryTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/CategoryTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/EmailTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/EmailTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/MenuTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/MenuTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/OrderItemTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/OrderItemTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/OrderTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/OrderTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PageTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/PageTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/PermissionTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/PermissionTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/ProductTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/ProductTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/RoleTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/RoleTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/SettingTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/SettingTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/UserTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/UserTableSeeder.php -------------------------------------------------------------------------------- /database/seeds/WishlistsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/database/seeds/WishlistsTableSeeder.php -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/package.json -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/phpspec.yml -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/css/all.css -------------------------------------------------------------------------------- /public/assets/css/all.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/css/all.css.map -------------------------------------------------------------------------------- /public/assets/fonts/rudra-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/fonts/rudra-preview.html -------------------------------------------------------------------------------- /public/assets/img/about/payment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/about/payment.png -------------------------------------------------------------------------------- /public/assets/img/banners/banner-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/banners/banner-1.jpg -------------------------------------------------------------------------------- /public/assets/img/banners/banner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/banners/banner-2.jpg -------------------------------------------------------------------------------- /public/assets/img/banners/banner-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/banners/banner-3.jpg -------------------------------------------------------------------------------- /public/assets/img/banners/thumbs/3_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/banners/thumbs/3_thumb.jpg -------------------------------------------------------------------------------- /public/assets/img/banners/thumbs/thumbnail-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/banners/thumbs/thumbnail-1.png -------------------------------------------------------------------------------- /public/assets/img/banners/thumbs/thumbnail-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/banners/thumbs/thumbnail-2.png -------------------------------------------------------------------------------- /public/assets/img/banners/thumbs/thumbnail-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/banners/thumbs/thumbnail-3.png -------------------------------------------------------------------------------- /public/assets/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg.jpg -------------------------------------------------------------------------------- /public/assets/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg.png -------------------------------------------------------------------------------- /public/assets/img/bg/bgb20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/bgb20.png -------------------------------------------------------------------------------- /public/assets/img/bg/bgb30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/bgb30.png -------------------------------------------------------------------------------- /public/assets/img/bg/bgb50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/bgb50.png -------------------------------------------------------------------------------- /public/assets/img/bg/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/blue.png -------------------------------------------------------------------------------- /public/assets/img/bg/body_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/body_bg.jpg -------------------------------------------------------------------------------- /public/assets/img/bg/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/circle.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/N.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/N.jpg -------------------------------------------------------------------------------- /public/assets/img/bg/dark/black_denim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/black_denim.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/black_linen_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/black_linen_v2.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/concrete_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/concrete_wall.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/dark_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/dark_wall.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/grey_wash_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/grey_wash_wall.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/low_contrast_linen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/low_contrast_linen.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/noisy_net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/noisy_net.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/stressed_linen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/stressed_linen.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/tweed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/tweed.jpg -------------------------------------------------------------------------------- /public/assets/img/bg/dark/tweed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/tweed.png -------------------------------------------------------------------------------- /public/assets/img/bg/dark/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dark/type.png -------------------------------------------------------------------------------- /public/assets/img/bg/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/dust.png -------------------------------------------------------------------------------- /public/assets/img/bg/fabric_of_squares_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/fabric_of_squares_gray.png -------------------------------------------------------------------------------- /public/assets/img/bg/fabric_plaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/fabric_plaid.png -------------------------------------------------------------------------------- /public/assets/img/bg/felt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/felt.png -------------------------------------------------------------------------------- /public/assets/img/bg/furley_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/furley_bg.png -------------------------------------------------------------------------------- /public/assets/img/bg/grains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/grains.jpg -------------------------------------------------------------------------------- /public/assets/img/bg/grass_textured_icons.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/grass_textured_icons.rar -------------------------------------------------------------------------------- /public/assets/img/bg/greyzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/greyzz.png -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/billie_holiday.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/billie_holiday.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/binding_dark.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/binding_dark.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/black_linen_v2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/black_linen_v2.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/blackmamba.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/blackmamba.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/blackorchid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/blackorchid.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/brushed_alu_dark.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/brushed_alu_dark.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/concrete_wall (1).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/concrete_wall (1).zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/concrete_wall.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/concrete_wall.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/cream_dust.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/cream_dust.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/debut_light.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/debut_light.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/dust.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/dust.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/dust/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/dust/dust.png -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/dust/dust_@2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/dust/dust_@2X.png -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/dust/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/dust/readme.txt -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/green_dust_scratch.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/green_dust_scratch.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/lightpaperfibers (1).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/lightpaperfibers (1).zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/mirrored_squares.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/mirrored_squares.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/nice_snow.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/nice_snow.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/noisy_net.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/noisy_net.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/p1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/p1.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/polaroid.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/polaroid.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/ricepaper_v3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/ricepaper_v3.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/satinweave.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/satinweave.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/textured_paper.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/textured_paper.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/ticks.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/ticks.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/twinkle_twinkle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/twinkle_twinkle.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/white_wall_hash.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/white_wall_hash.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/PATTERN/witewall_3.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/PATTERN/witewall_3.zip -------------------------------------------------------------------------------- /public/assets/img/bg/light/cream_dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/light/cream_dust.png -------------------------------------------------------------------------------- /public/assets/img/bg/mochaGrunge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/mochaGrunge.png -------------------------------------------------------------------------------- /public/assets/img/bg/noise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/noise.png -------------------------------------------------------------------------------- /public/assets/img/bg/polka.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/polka.png -------------------------------------------------------------------------------- /public/assets/img/bg/subtle_grunge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/subtle_grunge.png -------------------------------------------------------------------------------- /public/assets/img/bg/tex2res5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bg/tex2res5.png -------------------------------------------------------------------------------- /public/assets/img/bootstrap-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/bootstrap-logo.png -------------------------------------------------------------------------------- /public/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /public/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /public/assets/img/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/img/loader/28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/loader/28.gif -------------------------------------------------------------------------------- /public/assets/img/loader/28.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/loader/28.tar -------------------------------------------------------------------------------- /public/assets/img/loader/29(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/loader/29(1).png -------------------------------------------------------------------------------- /public/assets/img/loader/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/loader/29.png -------------------------------------------------------------------------------- /public/assets/img/loader/29.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/loader/29.tar -------------------------------------------------------------------------------- /public/assets/img/raty/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/0.png -------------------------------------------------------------------------------- /public/assets/img/raty/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/1.png -------------------------------------------------------------------------------- /public/assets/img/raty/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/2.png -------------------------------------------------------------------------------- /public/assets/img/raty/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/3.png -------------------------------------------------------------------------------- /public/assets/img/raty/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/4.png -------------------------------------------------------------------------------- /public/assets/img/raty/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/5.png -------------------------------------------------------------------------------- /public/assets/img/raty/cancel-custom-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/cancel-custom-off.png -------------------------------------------------------------------------------- /public/assets/img/raty/cancel-custom-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/cancel-custom-on.png -------------------------------------------------------------------------------- /public/assets/img/raty/cancel-off-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/cancel-off-big.png -------------------------------------------------------------------------------- /public/assets/img/raty/cancel-on-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/cancel-on-big.png -------------------------------------------------------------------------------- /public/assets/img/raty/core/cancel-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/core/cancel-off.png -------------------------------------------------------------------------------- /public/assets/img/raty/core/cancel-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/core/cancel-on.png -------------------------------------------------------------------------------- /public/assets/img/raty/core/star-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/core/star-half.png -------------------------------------------------------------------------------- /public/assets/img/raty/core/star-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/core/star-off.png -------------------------------------------------------------------------------- /public/assets/img/raty/core/star-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/core/star-on.png -------------------------------------------------------------------------------- /public/assets/img/raty/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/off.png -------------------------------------------------------------------------------- /public/assets/img/raty/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/on.png -------------------------------------------------------------------------------- /public/assets/img/raty/star-half-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/star-half-big.png -------------------------------------------------------------------------------- /public/assets/img/raty/star-half-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/star-half-mono.png -------------------------------------------------------------------------------- /public/assets/img/raty/star-off-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/star-off-big.png -------------------------------------------------------------------------------- /public/assets/img/raty/star-on-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/raty/star-on-big.png -------------------------------------------------------------------------------- /public/assets/img/tmp/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/tmp/b.png -------------------------------------------------------------------------------- /public/assets/img/tmp/filename2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/tmp/filename2.jpg -------------------------------------------------------------------------------- /public/assets/img/tmp/t.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/img/tmp/t.jpg -------------------------------------------------------------------------------- /public/assets/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/js/all.js -------------------------------------------------------------------------------- /public/assets/js/all.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/assets/js/all.js.map -------------------------------------------------------------------------------- /public/build/assets/css/all.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/build/assets/css/all.css.map -------------------------------------------------------------------------------- /public/build/assets/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/build/assets/img/1.png -------------------------------------------------------------------------------- /public/build/assets/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/build/assets/img/3.jpg -------------------------------------------------------------------------------- /public/build/assets/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/build/assets/img/4.jpg -------------------------------------------------------------------------------- /public/build/assets/img/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/build/assets/img/divider.png -------------------------------------------------------------------------------- /public/build/assets/img/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/build/assets/img/original.jpg -------------------------------------------------------------------------------- /public/build/assets/js/all.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/build/assets/js/all.js.map -------------------------------------------------------------------------------- /public/build/rev-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/build/rev-manifest.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/readme.md -------------------------------------------------------------------------------- /resources/api-generator-templates/API/Controller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/api-generator-templates/API/Controller.txt -------------------------------------------------------------------------------- /resources/api-generator-templates/API/ControllerRepo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/api-generator-templates/API/ControllerRepo.txt -------------------------------------------------------------------------------- /resources/api-generator-templates/Common/Migration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/api-generator-templates/Common/Migration.txt -------------------------------------------------------------------------------- /resources/api-generator-templates/Common/Model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/api-generator-templates/Common/Model.txt -------------------------------------------------------------------------------- /resources/api-generator-templates/Common/Model_Extended.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/api-generator-templates/Common/Model_Extended.txt -------------------------------------------------------------------------------- /resources/api-generator-templates/Common/Repository.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/api-generator-templates/Common/Repository.txt -------------------------------------------------------------------------------- /resources/api-generator-templates/Scaffold/Controller.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/api-generator-templates/Scaffold/Controller.txt -------------------------------------------------------------------------------- /resources/api-generator-templates/Scaffold/Request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/api-generator-templates/Scaffold/Request.txt -------------------------------------------------------------------------------- /resources/api-generator-templates/Scaffold/routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/api-generator-templates/Scaffold/routes.txt -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/.gitignore -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/.travis.yml -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/Gruntfile.js -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/LICENSE -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/config.rb -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/css/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/css/buttons.css -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/humans.txt -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/js/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/js/buttons.js -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/package.json -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/scss/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/scss/_base.scss -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/scss/_layout.scss -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/scss/_mixins.scss -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/scss/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/scss/buttons.scss -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/showcase/js/zeroclipboard/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | npm-debug.log 4 | bin/* 5 | -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/showcase/js/zeroclipboard/.npmignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | test/ 3 | .DS_Store -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/showcase/js/zeroclipboard/.spmignore: -------------------------------------------------------------------------------- 1 | docs 2 | src 3 | test 4 | -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/showcase/js/zeroclipboard/src/js/start.js: -------------------------------------------------------------------------------- 1 | (function(window, undefined) { 2 | "use strict"; 3 | -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/showcase/scss/_state.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/bower_components/Buttons/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/Buttons/tests/index.html -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/CHANGELOG.md -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/CONTRIBUTE.md -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/FAQ.md -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/LICENSE.md -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/dist/modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/dist/modal.css -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/dist/modal.js -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/index.html -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/modal.js -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/css-modal/modal.scss -------------------------------------------------------------------------------- /resources/assets/bower_components/css-modal/plugins/modal-helper.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/.gitattributes -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/CHANGELOG.md -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/1_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/1_b.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/1_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/1_s.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/2_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/2_b.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/2_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/2_s.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/3_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/3_b.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/3_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/3_s.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/4_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/4_b.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/4_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/4_s.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/5_b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/5_b.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/5_s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/5_s.jpg -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/ajax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/ajax.txt -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/iframe.html -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/demo/index.html -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/source/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/source/blank.gif -------------------------------------------------------------------------------- /resources/assets/bower_components/fancybox/sprite.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/fancybox/sprite.psd -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "demo/bower/" 3 | } -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/.gitignore -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/.travis.yml -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/Gruntfile.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/LICENSE.md -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/dist/js/asap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/dist/js/asap.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/dist/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/dist/js/core.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/dist/js/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/dist/js/swap.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/dist/js/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/dist/js/tabs.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/package.json -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/docs/analytics.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/docs/asap.html: -------------------------------------------------------------------------------- 1 | Launch the Demo 2 | -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/docs/asap.md: -------------------------------------------------------------------------------- 1 | ### Basic 2 | -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/docs/pagination.md: -------------------------------------------------------------------------------- 1 | ### Basic 2 | 3 | -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/docs/range.md: -------------------------------------------------------------------------------- 1 | ### Basic 2 | 3 | -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/js/asap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/src/js/asap.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/src/js/core.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/js/range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/src/js/range.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/js/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/src/js/swap.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/js/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/src/js/tabs.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/src/js/touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/src/js/touch.js -------------------------------------------------------------------------------- /resources/assets/bower_components/formstone/tasks/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/formstone/tasks/docs.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/MIT-LICENSE.txt -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/dist/jquery.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/ajax.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/ajax/load.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/ajax/script.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/ajax/xhr.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/attributes.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/callbacks.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/core.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/core/access.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/core/init.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/core/ready.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/css.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/css/curCSS.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/css/support.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/css/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/css/swap.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/data.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/data/Data.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/deferred.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/deprecated.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/dimensions.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/effects.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/event.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/event/ajax.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/event/alias.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/exports/amd.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/intro.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/jquery.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/offset.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/queue.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/queue/delay.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/serialize.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/traversing.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/var/concat.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/var/hasOwn.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/var/indexOf.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/var/pnum.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/var/push.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/var/slice.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/var/support.js -------------------------------------------------------------------------------- /resources/assets/bower_components/jquery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/jquery/src/wrap.js -------------------------------------------------------------------------------- /resources/assets/bower_components/microplugin/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/microplugin/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/microplugin/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | node_modules -------------------------------------------------------------------------------- /resources/assets/bower_components/microplugin/.npmignore: -------------------------------------------------------------------------------- 1 | *.md 2 | .git* 3 | test/ -------------------------------------------------------------------------------- /resources/assets/bower_components/microplugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/microplugin/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/microplugin/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/microplugin/bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/microplugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/microplugin/package.json -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/.travis.yml -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/changelog.md -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/favicon.ico -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/images/0.png -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/images/1.png -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/images/2.png -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/images/3.png -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/images/4.png -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/images/5.png -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/images/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/images/off.png -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/images/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/images/on.png -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/demo/index.html -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/lib/fonts/raty.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/lib/fonts/raty.eot -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/lib/fonts/raty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/lib/fonts/raty.svg -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/lib/fonts/raty.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/lib/fonts/raty.ttf -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/lib/fonts/raty.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/lib/fonts/raty.woff -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/lib/jquery.raty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/lib/jquery.raty.css -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/lib/jquery.raty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/lib/jquery.raty.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/package.json -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/cancel_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/cancel_spec.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/click_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/click_spec.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/common_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/common_spec.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/fn_move_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/fn_move_spec.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/fn_set_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/fn_set_spec.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/half_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/half_spec.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/hints_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/hints_spec.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/karma.conf.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/lib/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/lib/boot.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/path_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/path_spec.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/run.html -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/spec/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/spec/spec.js -------------------------------------------------------------------------------- /resources/assets/bower_components/raty/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/raty/vendor/jquery.js -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/.editorconfig -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist/js/i18n/build.txt 3 | -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/.jshintignore -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/.jshintrc -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/.travis.yml -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/Gruntfile.js -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/LICENSE.md -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/component.json -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/composer.json -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | dist 3 | -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/docs/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/select2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/select2/package.json -------------------------------------------------------------------------------- /resources/assets/bower_components/selectize/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/selectize/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/selectize/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .DAV 3 | node_modules 4 | bower_components 5 | *.log -------------------------------------------------------------------------------- /resources/assets/bower_components/selectize/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/selectize/LICENSE -------------------------------------------------------------------------------- /resources/assets/bower_components/selectize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/selectize/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/selectize/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/selectize/bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/sifter/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/sifter/.bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/sifter/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store 2 | node_modules 3 | benchmark/report.json -------------------------------------------------------------------------------- /resources/assets/bower_components/sifter/.npmignore: -------------------------------------------------------------------------------- 1 | *.md 2 | .git* 3 | benchmark/ 4 | test/ -------------------------------------------------------------------------------- /resources/assets/bower_components/sifter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/sifter/README.md -------------------------------------------------------------------------------- /resources/assets/bower_components/sifter/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/sifter/bower.json -------------------------------------------------------------------------------- /resources/assets/bower_components/sifter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/sifter/package.json -------------------------------------------------------------------------------- /resources/assets/bower_components/sifter/sifter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/sifter/sifter.js -------------------------------------------------------------------------------- /resources/assets/bower_components/sifter/sifter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/bower_components/sifter/sifter.min.js -------------------------------------------------------------------------------- /resources/assets/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/animate.css -------------------------------------------------------------------------------- /resources/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/app.css -------------------------------------------------------------------------------- /resources/assets/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/base.css -------------------------------------------------------------------------------- /resources/assets/css/buttons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/buttons.css -------------------------------------------------------------------------------- /resources/assets/css/grid/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/grid/demo.css -------------------------------------------------------------------------------- /resources/assets/css/grid/grd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/grid/grd.css -------------------------------------------------------------------------------- /resources/assets/css/grid/wallgrid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/grid/wallgrid.css -------------------------------------------------------------------------------- /resources/assets/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/css/inventive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/inventive.css -------------------------------------------------------------------------------- /resources/assets/css/kara.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/kara.css -------------------------------------------------------------------------------- /resources/assets/css/loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/loader.css -------------------------------------------------------------------------------- /resources/assets/css/market.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/market.css -------------------------------------------------------------------------------- /resources/assets/css/materialicon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/materialicon.css -------------------------------------------------------------------------------- /resources/assets/css/megamenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/megamenu.css -------------------------------------------------------------------------------- /resources/assets/css/nav/nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/nav/nav.css -------------------------------------------------------------------------------- /resources/assets/css/nav/navold.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/nav/navold.css -------------------------------------------------------------------------------- /resources/assets/css/plans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/plans.css -------------------------------------------------------------------------------- /resources/assets/css/rudra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/rudra.css -------------------------------------------------------------------------------- /resources/assets/css/sliders-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/sliders-theme.css -------------------------------------------------------------------------------- /resources/assets/css/sliders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/sliders.css -------------------------------------------------------------------------------- /resources/assets/css/tables/tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/css/tables/tables.css -------------------------------------------------------------------------------- /resources/assets/htc/csshover3.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/htc/csshover3.htc -------------------------------------------------------------------------------- /resources/assets/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /resources/assets/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /resources/assets/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/ico/favicon.png -------------------------------------------------------------------------------- /resources/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/app.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap-wysiwyg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/bootstrap-wysiwyg.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/bootstrap.js -------------------------------------------------------------------------------- /resources/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /resources/assets/js/cart/angular-cookies.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/cart/angular-cookies.min.js.map -------------------------------------------------------------------------------- /resources/assets/js/cart/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/cart/angular.min.js.map -------------------------------------------------------------------------------- /resources/assets/js/cart/angularjs.1.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/cart/angularjs.1.2.4.min.js -------------------------------------------------------------------------------- /resources/assets/js/cart/angularjs.cookies.1.2.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/cart/angularjs.cookies.1.2.4.min.js -------------------------------------------------------------------------------- /resources/assets/js/cart/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/cart/shared.js -------------------------------------------------------------------------------- /resources/assets/js/components/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/components/colorpicker.js -------------------------------------------------------------------------------- /resources/assets/js/components/doc/js/min/modal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/components/doc/js/min/modal.min.js -------------------------------------------------------------------------------- /resources/assets/js/components/doc/js/min/slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/components/doc/js/min/slider.min.js -------------------------------------------------------------------------------- /resources/assets/js/components/doc/js/min/sliders.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/components/doc/js/min/sliders.min.js -------------------------------------------------------------------------------- /resources/assets/js/components/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/components/modal.js -------------------------------------------------------------------------------- /resources/assets/js/components/sidemenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/components/sidemenu.js -------------------------------------------------------------------------------- /resources/assets/js/components/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/components/slider.js -------------------------------------------------------------------------------- /resources/assets/js/components/sliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/components/sliders.js -------------------------------------------------------------------------------- /resources/assets/js/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/datepicker.js -------------------------------------------------------------------------------- /resources/assets/js/doc/dist/js/min/datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/dist/js/min/datepicker.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/dist/js/min/herotabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/dist/js/min/herotabs.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/dist/js/min/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/dist/js/min/jquery.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/dist/js/min/nav.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/dist/js/min/nav.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/dist/js/min/navbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/dist/js/min/navbar.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/dist/js/min/stabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/dist/js/min/stabs.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/dist/js/min/sticky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/dist/js/min/sticky.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/datepicker.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/doubletaptogo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/doubletaptogo.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/easytabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/easytabs.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/herotabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/herotabs.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/jquery-1.7.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/jquery-1.7.2.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/jquery.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/nav.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/nav.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/navbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/navbar.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/sliders.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/sliders.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/stabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/stabs.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/sticky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/sticky.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/tabs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/tabs.min.js -------------------------------------------------------------------------------- /resources/assets/js/doc/js/min/tabs2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/doc/js/min/tabs2.min.js -------------------------------------------------------------------------------- /resources/assets/js/filesaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/filesaver.js -------------------------------------------------------------------------------- /resources/assets/js/herotabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/herotabs.js -------------------------------------------------------------------------------- /resources/assets/js/holder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/holder.js -------------------------------------------------------------------------------- /resources/assets/js/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/holder.min.js -------------------------------------------------------------------------------- /resources/assets/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/html5shiv.js -------------------------------------------------------------------------------- /resources/assets/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/jquery.js -------------------------------------------------------------------------------- /resources/assets/js/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/jszip.js -------------------------------------------------------------------------------- /resources/assets/js/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/less.js -------------------------------------------------------------------------------- /resources/assets/js/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/nav.js -------------------------------------------------------------------------------- /resources/assets/js/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/navbar.js -------------------------------------------------------------------------------- /resources/assets/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/respond.min.js -------------------------------------------------------------------------------- /resources/assets/js/sliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/sliders.js -------------------------------------------------------------------------------- /resources/assets/js/stabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/stabs.js -------------------------------------------------------------------------------- /resources/assets/js/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/sticky.js -------------------------------------------------------------------------------- /resources/assets/js/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/js/uglify.js -------------------------------------------------------------------------------- /resources/assets/plugins/CaptionHoverEffects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/CaptionHoverEffects/README.md -------------------------------------------------------------------------------- /resources/assets/plugins/CaptionHoverEffects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/CaptionHoverEffects/index.html -------------------------------------------------------------------------------- /resources/assets/plugins/CaptionHoverEffects/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/CaptionHoverEffects/index2.html -------------------------------------------------------------------------------- /resources/assets/plugins/CaptionHoverEffects/index3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/CaptionHoverEffects/index3.html -------------------------------------------------------------------------------- /resources/assets/plugins/CaptionHoverEffects/index4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/CaptionHoverEffects/index4.html -------------------------------------------------------------------------------- /resources/assets/plugins/CaptionHoverEffects/index5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/CaptionHoverEffects/index5.html -------------------------------------------------------------------------------- /resources/assets/plugins/CaptionHoverEffects/index6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/CaptionHoverEffects/index6.html -------------------------------------------------------------------------------- /resources/assets/plugins/CaptionHoverEffects/index7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/CaptionHoverEffects/index7.html -------------------------------------------------------------------------------- /resources/assets/plugins/bootstrap-select/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/bootstrap-select/README.md -------------------------------------------------------------------------------- /resources/assets/plugins/bootstrap-select/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/bootstrap-select/bower.json -------------------------------------------------------------------------------- /resources/assets/plugins/bootstrap-select/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/bootstrap-select/package.json -------------------------------------------------------------------------------- /resources/assets/plugins/bootstrap-select/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/bootstrap-select/test.html -------------------------------------------------------------------------------- /resources/assets/plugins/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/fancybox/blank.gif -------------------------------------------------------------------------------- /resources/assets/plugins/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /resources/assets/plugins/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /resources/assets/plugins/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /resources/assets/plugins/fancybox/fancybox_sprite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/fancybox/fancybox_sprite@2x.png -------------------------------------------------------------------------------- /resources/assets/plugins/fancybox/jquery.fancybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/fancybox/jquery.fancybox.css -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-file-upload-8.8.5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pyc 3 | node_modules 4 | -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-file-upload-8.8.5/server/gae-go/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-file-upload-8.8.5/server/gae-python/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-file-upload-8.8.5/server/node/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-file-upload-8.8.5/server/node/public/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-file-upload-8.8.5/server/node/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-file-upload-8.8.5/server/php/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !.htaccess 4 | -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-validate/img/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/jquery-validate/img/error.png -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-validate/img/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/jquery-validate/img/valid.png -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-validate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/jquery-validate/index.html -------------------------------------------------------------------------------- /resources/assets/plugins/jquery-validate/js/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/jquery-validate/js/validate.js -------------------------------------------------------------------------------- /resources/assets/plugins/pagedown/pagedown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/pagedown/pagedown.css -------------------------------------------------------------------------------- /resources/assets/plugins/pagedown/pagedown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/pagedown/pagedown.min.js -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/README.md -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/changelog.md -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/css/common.css -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/css/demo.css -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/img/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/img/0.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/img/1.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/img/2.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/img/3.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/img/4.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/img/5.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/img/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/img/off.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/demo/img/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/demo/img/on.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/index.html -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/js/img/cancel-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/js/img/cancel-on.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/js/img/star-half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/js/img/star-half.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/js/img/star-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/js/img/star-off.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/js/img/star-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/js/img/star-on.png -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/js/jquery.raty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/js/jquery.raty.js -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/spec/lib/jasmine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/spec/lib/jasmine.css -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/spec/lib/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/spec/lib/jasmine.js -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/spec/run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/spec/run.html -------------------------------------------------------------------------------- /resources/assets/plugins/raty-2.5.2/spec/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/raty-2.5.2/spec/spec.js -------------------------------------------------------------------------------- /resources/assets/plugins/tagmanager/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/tagmanager/CHANGELOG.md -------------------------------------------------------------------------------- /resources/assets/plugins/tagmanager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/tagmanager/README.md -------------------------------------------------------------------------------- /resources/assets/plugins/tagmanager/css/tagmanager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/tagmanager/css/tagmanager.css -------------------------------------------------------------------------------- /resources/assets/plugins/tagmanager/docs/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/tagmanager/docs/docs.css -------------------------------------------------------------------------------- /resources/assets/plugins/tagmanager/docs/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/tagmanager/docs/docs.html -------------------------------------------------------------------------------- /resources/assets/plugins/tagmanager/js/tagmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/tagmanager/js/tagmanager.js -------------------------------------------------------------------------------- /resources/assets/plugins/tagmanager/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/tagmanager/license.txt -------------------------------------------------------------------------------- /resources/assets/plugins/tagmanager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/tagmanager/package.json -------------------------------------------------------------------------------- /resources/assets/plugins/tagmanager/tagmanager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/assets/plugins/tagmanager/tagmanager.less -------------------------------------------------------------------------------- /resources/lang/en/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/resources/lang/en/about.php -------------------------------------------------------------------------------- /resources/lang/en/cart.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /vendor/swiftmailer/swiftmailer/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speedovation/LaravelMart/HEAD/vendor/swiftmailer/swiftmailer/tests/bootstrap.php --------------------------------------------------------------------------------