├── .bowerrc ├── .circleci └── config.yml ├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── README.md ├── app ├── Attr.php ├── AttrVal.php ├── Banner.php ├── Blog.php ├── BlogCategory.php ├── BlogComment.php ├── Brand.php ├── Console │ ├── Commands │ │ └── loggerLink.php │ └── Kernel.php ├── Datatable.php ├── EmailVerifyCode.php ├── Exceptions │ └── Handler.php ├── File.php ├── Helpers │ ├── date_functions.php │ └── functions.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AuthController.php │ │ │ ├── BannerController.php │ │ │ ├── BlogCategoryController.php │ │ │ ├── BlogController.php │ │ │ ├── BrandController.php │ │ │ ├── ChartsController.php │ │ │ ├── CustomDataTablesController.php │ │ │ ├── DataTablesController.php │ │ │ ├── EditableDataTablesController.php │ │ │ ├── FileController.php │ │ │ ├── GroupsController.php │ │ │ ├── ModelcheckController.php │ │ │ ├── ProductCategoryAttrController.php │ │ │ ├── ProductCategoryController.php │ │ │ ├── ProductController.php │ │ │ ├── TaskController.php │ │ │ └── UsersController.php │ │ ├── AppBaseController.php │ │ ├── BlogController.php │ │ ├── Controller.php │ │ ├── Front │ │ │ ├── BasketController.php │ │ │ ├── BrandController.php │ │ │ ├── CategoryController.php │ │ │ ├── CheckoutController.php │ │ │ ├── HomeController.php │ │ │ ├── MyController.php │ │ │ ├── MyOrderController.php │ │ │ ├── MySellOrderController.php │ │ │ ├── MySellerController.php │ │ │ ├── PayCallbackController.php │ │ │ ├── ProductController.php │ │ │ ├── SellController.php │ │ │ └── UserReceiveAddressController.php │ │ ├── FrontEndController.php │ │ ├── JoshController.php │ │ ├── LogViewerController.php │ │ ├── ModelcheckController.php │ │ └── MyEbayController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── SentinelAdmin.php │ │ ├── SentinelUser.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── BlogCategoryRequest.php │ │ ├── BlogCommentRequest.php │ │ ├── BlogRequest.php │ │ ├── ConfirmPasswordRequest.php │ │ ├── DataTablesRequest.php │ │ ├── FileUploadRequest.php │ │ ├── ForgotRequest.php │ │ ├── FrontendRequest.php │ │ ├── GroupRequest.php │ │ ├── PasswordResetRequest.php │ │ ├── SellerRequest.php │ │ ├── TaskRequest.php │ │ └── UserRequest.php ├── Mail │ ├── Contact.php │ ├── ForgotPassword.php │ └── Restore.php ├── Order.php ├── OrderDetail.php ├── Product.php ├── ProductAttrVal.php ├── ProductCategory.php ├── ProductDescription.php ├── ProductHistory.php ├── ProductImg.php ├── ProductVariant.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── LocalServiceProvider.php │ └── RouteServiceProvider.php ├── RoleUsers.php ├── Roles.php ├── SearchHistory.php ├── Task.php ├── User.php ├── UserBasket.php ├── UserProductHistory.php ├── UserReceiveAddress.php ├── UserSaveSeller.php └── UserTransLog.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── bower.json ├── composer.json ├── composer.lock ├── config ├── activitylog.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cartalyst.sentinel.php ├── charts.php ├── database.php ├── filesystems.php ├── infyom │ ├── generator_builder.php │ └── laravel_generator.php ├── log-viewer.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_07_02_230147_migration_cartalyst_sentinel.php │ ├── 2014_10_04_174350_soft_delete_users.php │ ├── 2014_12_10_011106_add_fields_to_user_table.php │ ├── 2015_08_09_200015_create_blog_module_table.php │ ├── 2015_08_11_064636_add_slug_to_blogs_table.php │ ├── 2015_11_10_140011_create_files_table.php │ ├── 2016_01_02_062647_create_tasks_table.php │ ├── 2016_04_26_054601_create_datatables_table.php │ ├── 2016_10_04_103149_add_fields_datatables_table.php │ ├── 2017_09_29_113930_create_activity_log_table.php │ ├── 2017_10_07_070138_create_countries_table.php │ └── 2017_10_24_130059_add_country_field.php └── seeds │ ├── AdminSeeder.php │ ├── DatabaseSeeder.php │ └── DatatablesSeeder.php ├── infyomlabs └── laravel-generator │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── config │ └── laravel_generator.php │ ├── samples │ └── fields_sample.json │ ├── src │ ├── Commands │ │ ├── API │ │ │ ├── APIControllerGeneratorCommand.php │ │ │ ├── APIGeneratorCommand.php │ │ │ ├── APIRequestsGeneratorCommand.php │ │ │ └── TestsGeneratorCommand.php │ │ ├── APIScaffoldGeneratorCommand.php │ │ ├── BaseCommand.php │ │ ├── Common │ │ │ ├── MigrationGeneratorCommand.php │ │ │ ├── ModelGeneratorCommand.php │ │ │ └── RepositoryGeneratorCommand.php │ │ ├── Publish │ │ │ ├── GeneratorPublishCommand.php │ │ │ ├── LayoutPublishCommand.php │ │ │ ├── PublishBaseCommand.php │ │ │ └── PublishTemplateCommand.php │ │ ├── RollbackGeneratorCommand.php │ │ └── Scaffold │ │ │ ├── ControllerGeneratorCommand.php │ │ │ ├── RequestsGeneratorCommand.php │ │ │ ├── ScaffoldGeneratorCommand.php │ │ │ └── ViewsGeneratorCommand.php │ ├── Common │ │ ├── BaseRepository.php │ │ ├── CommandData.php │ │ └── GeneratorConfig.php │ ├── Contracts │ │ └── TemplatesPublisherContract.php │ ├── Controller │ │ └── AppBaseController.php │ ├── Criteria │ │ └── LimitOffsetCriteria.php │ ├── Generators │ │ ├── API │ │ │ ├── APIControllerGenerator.php │ │ │ ├── APIRequestGenerator.php │ │ │ ├── APIRoutesGenerator.php │ │ │ └── APITestGenerator.php │ │ ├── BaseGenerator.php │ │ ├── MigrationGenerator.php │ │ ├── ModelGenerator.php │ │ ├── RepositoryGenerator.php │ │ ├── RepositoryTestGenerator.php │ │ ├── Scaffold │ │ │ ├── ControllerGenerator.php │ │ │ ├── MenuGenerator.php │ │ │ ├── RequestGenerator.php │ │ │ ├── RoutesGenerator.php │ │ │ └── ViewGenerator.php │ │ ├── SwaggerGenerator.php │ │ └── TestTraitGenerator.php │ ├── InfyOmGeneratorServiceProvider.php │ ├── Request │ │ └── APIRequest.php │ ├── Utils │ │ ├── FileUtil.php │ │ ├── GeneratorFieldsInputUtil.php │ │ ├── ResponseUtil.php │ │ ├── SchemaUtil.php │ │ ├── TableFieldsGenerator.php │ │ └── TemplateUtil.php │ └── helpers.php │ └── templates │ ├── api │ ├── controller │ │ └── api_controller.stub │ ├── docs │ │ └── controller │ │ │ ├── controller.stub │ │ │ ├── destroy.stub │ │ │ ├── index.stub │ │ │ ├── show.stub │ │ │ ├── store.stub │ │ │ └── update.stub │ ├── request │ │ ├── create_request.stub │ │ └── update_request.stub │ ├── routes │ │ ├── api_routes.stub │ │ ├── api_routes_group.stub │ │ ├── prefix_routes.stub │ │ └── routes.stub │ └── test │ │ └── api_test.stub │ ├── app_base_controller.stub │ ├── docs │ └── model.stub │ ├── home_controller.stub │ ├── migration.stub │ ├── model.stub │ ├── repository.stub │ ├── routes │ └── auth.stub │ ├── scaffold │ ├── controller │ │ ├── controller.stub │ │ └── datatable_controller.stub │ ├── datatable.stub │ ├── request │ │ ├── create_request.stub │ │ └── update_request.stub │ └── routes │ │ ├── prefix_routes.stub │ │ └── routes.stub │ └── test │ ├── api_test_trait.stub │ ├── repository_test.stub │ └── trait.stub ├── megabuy-nov24-2019.sql ├── package.json ├── paymoney_sdk (1).zip ├── paymoney_sdk ├── composer.json ├── example-success.php ├── example.php ├── php-sdk │ ├── composer.json │ └── src │ │ └── PayMoney │ │ ├── Api │ │ ├── Amount.php │ │ ├── Payer.php │ │ ├── Payment.php │ │ ├── RedirectUrls.php │ │ ├── Saved Pictures │ │ │ └── desktop.ini │ │ └── Transaction.php │ │ ├── Common │ │ └── PayMoneyModel.php │ │ └── Rest │ │ └── Connections.php └── vendor │ ├── autoload.php │ └── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json ├── public ├── .htaccess ├── assets │ ├── back │ │ ├── common.css │ │ └── common.js │ ├── crop │ │ ├── cropper.css │ │ └── cropper.js │ ├── css │ │ └── .gitignore │ ├── fonts │ │ └── .gitignore │ ├── images │ │ └── .gitignore │ ├── img │ │ └── .gitignore │ ├── jquery.validate.js │ ├── js │ │ └── .gitignore │ ├── multiselect │ │ ├── css │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100 (1).png │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.multiselect.css │ │ │ ├── jquery.multiselect.filter.css │ │ │ └── style.css │ │ └── js │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.js │ │ │ ├── jquery.multiselect.filter.js │ │ │ ├── jquery.multiselect.filter.min.js │ │ │ ├── jquery.multiselect.js │ │ │ └── jquery.multiselect.min.js │ ├── slick │ │ ├── ajax-loader.gif │ │ ├── config.rb │ │ ├── fonts │ │ │ ├── slick.eot │ │ │ ├── slick.svg │ │ │ ├── slick.ttf │ │ │ └── slick.woff │ │ ├── slick-theme.css │ │ ├── slick-theme.less │ │ ├── slick-theme.scss │ │ ├── slick.css │ │ ├── slick.js │ │ ├── slick.less │ │ ├── slick.min.js │ │ └── slick.scss │ ├── swal │ │ ├── css │ │ │ ├── all-themes.css │ │ │ ├── all-themes.min.css │ │ │ ├── animate.css │ │ │ ├── animate.min.css │ │ │ ├── sweetalert.css │ │ │ ├── waves.css │ │ │ └── waves.min.css │ │ └── js │ │ │ ├── sweetalert-dev.js │ │ │ ├── sweetalert.min.js │ │ │ ├── sweetalert.unmin.js │ │ │ ├── waves.js │ │ │ ├── waves.min.js │ │ │ └── waves.min.js.map │ ├── tree │ │ ├── dtree.css │ │ ├── dtree.js │ │ └── images │ │ │ └── dtree │ │ │ ├── CVS │ │ │ ├── Entries │ │ │ ├── Repository │ │ │ └── Root │ │ │ ├── Thumbs.db │ │ │ ├── base.gif │ │ │ ├── cd.gif │ │ │ ├── empty.gif │ │ │ ├── folder.gif │ │ │ ├── folderopen.gif │ │ │ ├── globe.gif │ │ │ ├── imgfolder.gif │ │ │ ├── join.gif │ │ │ ├── joinbottom.gif │ │ │ ├── line.gif │ │ │ ├── minus.gif │ │ │ ├── minusbottom.gif │ │ │ ├── musicfolder.gif │ │ │ ├── nolines_minus.gif │ │ │ ├── nolines_plus.gif │ │ │ ├── openfoldericon.png │ │ │ ├── page.gif │ │ │ ├── plus.gif │ │ │ ├── plusbottom.gif │ │ │ ├── question.gif │ │ │ └── trash.gif │ └── vendors │ │ └── .gitignore ├── favicon.png ├── index.php ├── mix-manifest.json ├── photo.html ├── robots.txt ├── uploads │ ├── blog │ │ └── .gitignore │ ├── category │ │ ├── 201910171506032824.jpg │ │ ├── 201910171521376709.jpg │ │ ├── 201910171635463710.jpg │ │ ├── 201910171636276712.jpg │ │ ├── 201910171636493717.mp4 │ │ ├── 201910171638488850.jpg │ │ ├── 201910171658296924.jpg │ │ ├── 201910171719015693.pdf │ │ └── 201910270254202515.jpg │ ├── crudfiles │ │ └── .gitignore │ ├── files │ │ └── .gitignore │ ├── product │ │ ├── 20191123 │ │ │ ├── 0734241561.png │ │ │ ├── 0734406604.png │ │ │ ├── 0735051885.png │ │ │ ├── 0736191285.png │ │ │ ├── 0736376003.png │ │ │ ├── 0737059242.png │ │ │ ├── 0737516537.png │ │ │ ├── 0738252808.png │ │ │ ├── 0738252846.png │ │ │ ├── 0802353190.png │ │ │ ├── 0805415045.png │ │ │ ├── 0805416051.png │ │ │ ├── 0806186361.png │ │ │ ├── 0807152576.png │ │ │ ├── 0807308045.png │ │ │ ├── 0807457341.png │ │ │ ├── 0808075130.png │ │ │ └── 0808417769.png │ │ ├── big │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── 4.jpg │ │ ├── btt.png │ │ ├── s-l1600(1).webp │ │ ├── s-l1600(2).webp │ │ ├── s-l1600(3).webp │ │ ├── s-l1600(4).webp │ │ ├── s-l1600.webp │ │ ├── s-l200(1).webp │ │ ├── s-l200(10).webp │ │ ├── s-l200(11).webp │ │ ├── s-l200(12).webp │ │ ├── s-l200(13).webp │ │ ├── s-l200(2).webp │ │ ├── s-l200(3).webp │ │ ├── s-l200(4).webp │ │ ├── s-l200(5).webp │ │ ├── s-l200(6).webp │ │ ├── s-l200(7).webp │ │ ├── s-l200(8).webp │ │ ├── s-l200(9).webp │ │ ├── s-l200.webp │ │ ├── s-l225(1).jpg │ │ ├── s-l225(1).webp │ │ ├── s-l225(10).webp │ │ ├── s-l225(11).webp │ │ ├── s-l225(12).webp │ │ ├── s-l225(13).webp │ │ ├── s-l225(14).webp │ │ ├── s-l225(2).jpg │ │ ├── s-l225(2).webp │ │ ├── s-l225(3).jpg │ │ ├── s-l225(3).webp │ │ ├── s-l225(4).jpg │ │ ├── s-l225(4).webp │ │ ├── s-l225(5).jpg │ │ ├── s-l225(5).webp │ │ ├── s-l225(6).jpg │ │ ├── s-l225(6).webp │ │ ├── s-l225(7).jpg │ │ ├── s-l225(7).webp │ │ ├── s-l225(8).jpg │ │ ├── s-l225(8).webp │ │ ├── s-l225(9).webp │ │ ├── s-l225.jpg │ │ ├── s-l225.webp │ │ ├── s-l300(1).jpg │ │ ├── s-l300(2).jpg │ │ ├── s-l300(3).jpg │ │ ├── s-l300(4).jpg │ │ ├── s-l300(5).jpg │ │ ├── s-l300(6).jpg │ │ ├── s-l300(7).jpg │ │ ├── s-l300.jpg │ │ ├── s-l400.jpg │ │ ├── s-l960.webp │ │ ├── s_1x2.gif │ │ └── small │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ └── 4.jpg │ └── users │ │ └── .gitignore └── web.config ├── resources ├── infyom │ └── infyom-generator-templates │ │ ├── api │ │ ├── controller │ │ │ └── api_controller.stub │ │ ├── docs │ │ │ └── controller │ │ │ │ ├── controller.stub │ │ │ │ ├── destroy.stub │ │ │ │ ├── index.stub │ │ │ │ ├── show.stub │ │ │ │ ├── store.stub │ │ │ │ └── update.stub │ │ ├── request │ │ │ ├── create_request.stub │ │ │ └── update_request.stub │ │ ├── routes │ │ │ ├── api_routes.stub │ │ │ ├── api_routes_group.stub │ │ │ ├── prefix_routes.stub │ │ │ └── routes.stub │ │ └── test │ │ │ └── api_test.stub │ │ ├── app_base_controller.stub │ │ ├── docs │ │ └── model.stub │ │ ├── home_controller.stub │ │ ├── migration.stub │ │ ├── model.stub │ │ ├── model │ │ ├── model.stub │ │ └── relationship.stub │ │ ├── repository.stub │ │ ├── routes │ │ └── auth.stub │ │ ├── scaffold │ │ ├── auth │ │ │ ├── email.stub │ │ │ ├── login.stub │ │ │ ├── register.stub │ │ │ └── reset.stub │ │ ├── controller │ │ │ ├── controller.stub │ │ │ └── datatable_controller.stub │ │ ├── datatable.stub │ │ ├── emails │ │ │ └── password.stub │ │ ├── fields │ │ │ ├── bool-checkbox.stub │ │ │ ├── boolean.stub │ │ │ ├── checkbox.stub │ │ │ ├── checkbox_group.stub │ │ │ ├── date.stub │ │ │ ├── email.stub │ │ │ ├── file.stub │ │ │ ├── number.stub │ │ │ ├── password.stub │ │ │ ├── radio.stub │ │ │ ├── radio_group.stub │ │ │ ├── select.stub │ │ │ ├── text.stub │ │ │ ├── textarea.stub │ │ │ └── toggle-switch.stub │ │ ├── layouts │ │ │ ├── app.stub │ │ │ ├── datatables_css.stub │ │ │ ├── datatables_js.stub │ │ │ ├── home.stub │ │ │ ├── menu.stub │ │ │ ├── menu_template.stub │ │ │ └── sidebar.stub │ │ ├── request │ │ │ ├── create_request.stub │ │ │ └── update_request.stub │ │ ├── routes │ │ │ ├── prefix_routes.stub │ │ │ └── routes.stub │ │ └── views │ │ │ ├── blade_table_body.stub │ │ │ ├── checkbox_show_field.stub │ │ │ ├── checkbox_table_cell.stub │ │ │ ├── create.stub │ │ │ ├── datatable_body.stub │ │ │ ├── datatable_column.stub │ │ │ ├── datatables_actions.stub │ │ │ ├── edit.stub │ │ │ ├── fields.stub │ │ │ ├── index.stub │ │ │ ├── paginate.stub │ │ │ ├── show.stub │ │ │ ├── show_field.stub │ │ │ ├── table.stub │ │ │ ├── table_cell.stub │ │ │ └── table_header.stub │ │ └── test │ │ ├── api_test_trait.stub │ │ ├── repository_test.stub │ │ └── trait.stub ├── lang │ ├── de │ │ ├── auth │ │ │ ├── form.php │ │ │ └── message.php │ │ ├── blog │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── blogcategory │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── groups │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── users │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ └── title.php │ │ └── validation.php │ ├── en │ │ ├── auth.php │ │ ├── auth │ │ │ ├── form.php │ │ │ └── message.php │ │ ├── blog │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── blogcategory │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── groups │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── users │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ └── title.php │ │ └── validation.php │ ├── es │ │ ├── auth │ │ │ ├── form.php │ │ │ └── message.php │ │ ├── blog │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── blogcategory │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── groups │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── users │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ └── title.php │ │ └── validation.php │ ├── fr │ │ ├── auth │ │ │ ├── form.php │ │ │ └── message.php │ │ ├── blog │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── blogcategory │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── groups │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── users │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ └── title.php │ │ └── validation.php │ ├── nl │ │ ├── auth │ │ │ ├── form.php │ │ │ └── message.php │ │ ├── blog │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── blogcategory │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── groups │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── users │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ └── title.php │ │ └── validation.php │ ├── pt-BR │ │ ├── auth │ │ │ ├── form.php │ │ │ └── message.php │ │ ├── blog │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── blogcategory │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── groups │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── users │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ └── title.php │ │ └── validation.php │ ├── ru │ │ ├── auth.php │ │ ├── auth │ │ │ ├── form.php │ │ │ └── message.php │ │ ├── blog │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── blogcategory │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── groups │ │ │ ├── form.php │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ ├── table.php │ │ │ └── title.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── users │ │ │ ├── message.php │ │ │ ├── modal.php │ │ │ └── title.php │ │ └── validation.php │ └── sr │ │ ├── auth │ │ ├── form.php │ │ └── message.php │ │ ├── blog │ │ ├── message.php │ │ ├── modal.php │ │ ├── table.php │ │ └── title.php │ │ ├── blogcategory │ │ ├── form.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── table.php │ │ └── title.php │ │ ├── button.php │ │ ├── general.php │ │ ├── groups │ │ ├── form.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── table.php │ │ └── title.php │ │ ├── message.php │ │ ├── modal.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── reminders.php │ │ ├── users │ │ ├── message.php │ │ ├── modal.php │ │ └── title.php │ │ └── validation.php └── views │ ├── 404.blade.php │ ├── 500.blade.php │ ├── aboutus.blade.php │ ├── admin │ ├── 404.blade.php │ ├── 500.blade.php │ ├── accordionformwizard.blade.php │ ├── activity_log.blade.php │ ├── advanced_buttons.blade.php │ ├── advanced_datepickers.blade.php │ ├── advanced_modals.blade.php │ ├── advanced_tables.blade.php │ ├── advanced_tables2.blade.php │ ├── advancedmaps.blade.php │ ├── animatedicons.blade.php │ ├── auth │ │ └── forgot-password-confirm.blade.php │ ├── banner │ │ ├── index.blade.php │ │ └── info.blade.php │ ├── blank.blade.php │ ├── blog │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── blogcategory │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── brand │ │ ├── index.blade.php │ │ └── info.blade.php │ ├── buttonbuilder.blade.php │ ├── buttons.blade.php │ ├── calendar.blade.php │ ├── carousel.blade.php │ ├── charts.blade.php │ ├── charts_animation.blade.php │ ├── color.blade.php │ ├── compose.blade.php │ ├── database_chart.blade.php │ ├── datepicker.blade.php │ ├── deleted_users.blade.php │ ├── draft.blade.php │ ├── dropdowns.blade.php │ ├── dropzone.blade.php │ ├── editor.blade.php │ ├── editor2.blade.php │ ├── examples │ │ ├── custom_datatables.blade.php │ │ ├── datatables.blade.php │ │ └── editable_table.blade.php │ ├── form_builder.blade.php │ ├── form_builder2.blade.php │ ├── form_examples.blade.php │ ├── form_layouts.blade.php │ ├── formelements.blade.php │ ├── formwizard.blade.php │ ├── forward.blade.php │ ├── gallery.blade.php │ ├── general.blade.php │ ├── googlemaps.blade.php │ ├── grid.blade.php │ ├── gridmanager.blade.php │ ├── groups │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── icon.blade.php │ ├── image_valid.php │ ├── imagecropping.blade.php │ ├── imgmagnifier.blade.php │ ├── inbox.blade.php │ ├── index.blade.php │ ├── invoice.blade.php │ ├── jscharts.blade.php │ ├── jtable.blade.php │ ├── knob.blade.php │ ├── laravel_chart.blade.php │ ├── layouts │ │ ├── _left_menu.blade.php │ │ ├── _messages.blade.php │ │ ├── _mini_sidebar.blade.php │ │ ├── _notifications.blade.php │ │ ├── default.blade.php │ │ ├── menu.blade.php │ │ ├── modal_confirmation.blade.php │ │ └── pagination.blade.php │ ├── lockscreen.blade.php │ ├── login.blade.php │ ├── login2.blade.php │ ├── masonry_gallery.blade.php │ ├── multiple_upload.blade.php │ ├── nestable_list.blade.php │ ├── news.blade.php │ ├── news_item.blade.php │ ├── notifications.blade.php │ ├── panels.blade.php │ ├── pickers.blade.php │ ├── piecharts.blade.php │ ├── portlet_draggable.blade.php │ ├── product │ │ ├── add_attr_dlg.blade.php │ │ ├── add_attr_value_dlg.blade.php │ │ ├── attr_model.blade.php │ │ ├── category_list.blade.php │ │ ├── customize_variant_content.blade.php │ │ ├── customize_variant_dlg.blade.php │ │ ├── index.blade.php │ │ ├── product_info.blade.php │ │ ├── product_list.blade.php │ │ └── variant_product_list.blade.php │ ├── productcategory │ │ ├── add_brand_dlg.blade.php │ │ ├── brand_list.blade.php │ │ └── index.blade.php │ ├── productcategoryattr │ │ ├── attr_dlg.blade.php │ │ ├── attr_list.blade.php │ │ ├── attr_val_dlg.blade.php │ │ ├── attr_val_list_dlg.blade.php │ │ ├── category_list.blade.php │ │ └── index.blade.php │ ├── radio_checkbox.blade.php │ ├── ratings.blade.php │ ├── register2.blade.php │ ├── reply.blade.php │ ├── responsive_tables.blade.php │ ├── sent.blade.php │ ├── session_timeout.blade.php │ ├── simple_table.blade.php │ ├── sliders.blade.php │ ├── sortable_list.blade.php │ ├── spam.blade.php │ ├── sparklinecharts.blade.php │ ├── sweetalert.blade.php │ ├── tabs_accordions.blade.php │ ├── tagsinput.blade.php │ ├── tasks.blade.php │ ├── timeline.blade.php │ ├── toastr.blade.php │ ├── transitions.blade.php │ ├── trash.blade.php │ ├── treeview_jstree.blade.php │ ├── user_profile.blade.php │ ├── users │ │ ├── create.blade.php │ │ ├── edit.blade.php │ │ ├── index.blade.php │ │ └── show.blade.php │ ├── validation.blade.php │ ├── vectormaps.blade.php │ ├── view_mail.blade.php │ └── x-editable.blade.php │ ├── advancedfeatures.blade.php │ ├── all_categories.blade.php │ ├── blank_page.blade.php │ ├── blog.blade.php │ ├── blogitem.blade.php │ ├── brand.blade.php │ ├── cart.blade.php │ ├── categories.blade.php │ ├── category.blade.php │ ├── checkout.blade.php │ ├── compareproducts.blade.php │ ├── contact.blade.php │ ├── dlg │ ├── bid_confirm.blade.php │ ├── crop_dlg.blade.php │ └── higher_bid.blade.php │ ├── emails │ ├── auth │ │ └── reminder.blade.php │ ├── contact.blade.php │ ├── forgot-password.blade.php │ ├── layouts │ │ └── default.blade.php │ └── register-activate.blade.php │ ├── errors │ ├── 404.blade.php │ ├── 500.blade.php │ └── 503.blade.php │ ├── faq.blade.php │ ├── find_products.blade.php │ ├── find_products_auction.blade.php │ ├── forgotpwd-confirm.blade.php │ ├── forgotpwd.blade.php │ ├── front │ ├── all_categories.blade.php │ ├── basket.blade.php │ ├── brand.blade.php │ ├── categories.blade.php │ ├── category_wrapper.blade.php │ ├── checkout.blade.php │ ├── checkout │ │ ├── pay.blade.php │ │ └── ship_info.blade.php │ ├── find_products.blade.php │ ├── front_buyer │ │ ├── account.blade.php │ │ ├── account1.blade.php │ │ ├── activity_purchase_history.blade.php │ │ ├── activity_purchase_history1.blade.php │ │ ├── activity_recent_view.blade.php │ │ ├── activity_saved_searches.blade.php │ │ ├── activity_saved_sellers.blade.php │ │ ├── activity_sell.blade.php │ │ ├── activity_summary.blade.php │ │ ├── activity_summary1.blade.php │ │ ├── activity_watching.blade.php │ │ ├── discount_dlg.blade.php │ │ ├── discount_dlg_buyer_content.blade.php │ │ ├── left_menu.blade.php │ │ ├── messages.blade.php │ │ ├── order_evaluate_dlg.blade.php │ │ ├── order_evaluate_show_dlg.blade.php │ │ ├── order_function.blade.php │ │ ├── order_paid_list.blade.php │ │ ├── order_unpaid_list.blade.php │ │ ├── save_seller_dlg.blade.php │ │ └── top.blade.php │ ├── front_seller │ │ ├── account.blade.php │ │ ├── activity.blade.php │ │ ├── activity_buying.blade.php │ │ ├── activity_recent_view.blade.php │ │ ├── activity_saved_searches.blade.php │ │ ├── activity_selling_complete.blade.php │ │ ├── activity_selling_deliver.blade.php │ │ ├── activity_selling_discount.blade.php │ │ ├── activity_selling_drafts.blade.php │ │ ├── activity_selling_overview.blade.php │ │ ├── activity_selling_product.blade.php │ │ ├── activity_selling_unsold.blade.php │ │ ├── activity_summary.blade.php │ │ ├── activity_watching.blade.php │ │ ├── discount_dlg_seller_content.blade.php │ │ ├── left_menu.blade.php │ │ ├── messages.blade.php │ │ ├── order_discount_list.blade.php │ │ ├── order_function.blade.php │ │ ├── order_list.blade.php │ │ └── top_menu.blade.php │ ├── index.blade.php │ ├── product │ │ ├── attr_model.blade.php │ │ ├── customize_variant_content.blade.php │ │ ├── customize_variant_dlg.blade.php │ │ ├── order_review.blade.php │ │ ├── spec_wrapper.blade.php │ │ └── variant_product_list.blade.php │ ├── product_detail.blade.php │ ├── product_edit.blade.php │ ├── product_list.blade.php │ ├── sell.blade.php │ ├── seller_product_list.blade.php │ ├── spec_wrapper.blade.php │ ├── spec_wrapper1.blade.php │ └── user_receive_address │ │ ├── user_receive_address_dlg.blade.php │ │ ├── user_receive_address_edit_content.blade.php │ │ ├── user_receive_address_edit_dlg.blade.php │ │ └── user_receive_address_list.blade.php │ ├── globaldeals.blade.php │ ├── grid.blade.php │ ├── index.blade.php │ ├── index1.blade.php │ ├── infyom │ └── generator-builder │ │ ├── builder.blade.php │ │ └── field-template.blade.php │ ├── layouts │ ├── default.blade.php │ ├── default1.blade.php │ ├── default_checkout.blade.php │ ├── default_login.blade.php │ └── pagination.blade.php │ ├── login.blade.php │ ├── login1.blade.php │ ├── my_ebay.blade.php │ ├── my_ebay_history.blade.php │ ├── my_ebay_offers.blade.php │ ├── my_ebay_recently.blade.php │ ├── my_ebay_searches.blade.php │ ├── my_ebay_sell.blade.php │ ├── my_ebay_sellers.blade.php │ ├── my_ebay_selling.blade.php │ ├── my_ebay_selling_item.blade.php │ ├── my_ebay_selling_sold.blade.php │ ├── my_ebay_summary.blade.php │ ├── my_ebay_watching.blade.php │ ├── news.blade.php │ ├── news_item.blade.php │ ├── notifications.blade.php │ ├── portfolio.blade.php │ ├── portfolioitem.blade.php │ ├── price.blade.php │ ├── product.blade.php │ ├── product_auction_detail.blade.php │ ├── product_detail.blade.php │ ├── products.blade.php │ ├── register.blade.php │ ├── register1.blade.php │ ├── register_business.blade.php │ ├── sell.blade.php │ ├── single_product.blade.php │ ├── timeline.blade.php │ ├── typography.blade.php │ ├── user_account.blade.php │ ├── vendor │ ├── .gitkeep │ ├── charts │ │ ├── google │ │ │ ├── bar.blade.php │ │ │ └── multi │ │ │ │ └── area.blade.php │ │ ├── highcharts │ │ │ ├── area.blade.php │ │ │ ├── bar.blade.php │ │ │ ├── donut.blade.php │ │ │ ├── multi │ │ │ │ └── line.blade.php │ │ │ └── pie.blade.php │ │ └── material │ │ │ ├── bar.blade.php │ │ │ └── multi │ │ │ └── bar.blade.php │ ├── datatables │ │ ├── print.blade.php │ │ └── script.blade.php │ ├── flash │ │ ├── message.blade.php │ │ └── modal.blade.php │ ├── log-viewer │ │ ├── dashboard.blade.php │ │ ├── logs.blade.php │ │ └── show.blade.php │ ├── mail │ │ ├── html │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── table.blade.php │ │ │ └── themes │ │ │ │ └── default.css │ │ └── markdown │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ └── table.blade.php │ ├── notifications │ │ ├── email-plain.blade.php │ │ └── email.blade.php │ └── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── default.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ └── simple-default.blade.php │ └── visit_store.blade.php ├── routes ├── api.php ├── api_builder.php ├── channels.php ├── console.php ├── web.php └── web_builder.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "resources/assets/vendors" 3 | } -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | /.idea 7 | /.vagrant 8 | Homestead.json 9 | Homestead.yaml 10 | npm-debug.log 11 | yarn-error.log 12 | .env 13 | _ide_helper.php 14 | _ide_helper_models.php 15 | /mix-manifest.json 16 | public/assets/jtable_data/ 17 | /temp 18 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Megabuy - Multi-vendor Marketplace built with Laravel 2 | 3 | megabuy.online 4 | This project consists a couple with megapay.hk origined in Australia. 5 | 6 | -------------------------------------------------------------------------------- /app/Attr.php: -------------------------------------------------------------------------------- 1 | select(DB::raw("IFNULL(GROUP_CONCAT(val),'') title "))->first(); 21 | $ret = $info['title']; 22 | return $ret; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/Banner.php: -------------------------------------------------------------------------------- 1 | hasMany(Blog::class); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/BlogComment.php: -------------------------------------------------------------------------------- 1 | belongsTo(Blog::class); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/Brand.php: -------------------------------------------------------------------------------- 1 | $id))->count(); 15 | if($count >0) return false; 16 | return true; 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /app/Datatable.php: -------------------------------------------------------------------------------- 1 | make(true); 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/Http/Controllers/AppBaseController.php: -------------------------------------------------------------------------------- 1 | modelName; 13 | $filename = app_path('Models/'.$modelname.'.php'); 14 | if(file_exists($filename)){ 15 | return [ 16 | 'status'=>false, 17 | 'message'=>'Model name already exists' 18 | ]; 19 | } 20 | else{ 21 | return [ 22 | 'status'=>true, 23 | 'message'=>'success' 24 | ]; 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /app/Http/Controllers/MyEbayController.php: -------------------------------------------------------------------------------- 1 | get("menu", "summary"); 15 | $page = "my_ebay_".$menu; 16 | return view($page); 17 | } 18 | } -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | check()) { 21 | return redirect('/home'); 22 | } 23 | 24 | return $next($request); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Http/Middleware/SentinelUser.php: -------------------------------------------------------------------------------- 1 | ajax()) { 23 | return response('Unauthorized.', 401); 24 | } else { 25 | return Redirect::route('login'); 26 | } 27 | } 28 | return $next($request); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- 1 | 'required|min:3', 28 | 'name' => 'required|min:3', 29 | 'email' => 'required|email', 30 | ]; 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /app/Http/Requests/BlogRequest.php: -------------------------------------------------------------------------------- 1 | 'required|min:3', 28 | 'content' => 'required|min:3', 29 | 'blog_category_id' => 'required', 30 | ]; 31 | } 32 | 33 | } 34 | -------------------------------------------------------------------------------- /app/Http/Requests/ConfirmPasswordRequest.php: -------------------------------------------------------------------------------- 1 | 'required|between:3,32', 28 | 'password_confirm' => 'required|same:password' 29 | ]; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Http/Requests/FileUploadRequest.php: -------------------------------------------------------------------------------- 1 | 'required|image', 28 | ]; 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /app/Http/Requests/ForgotRequest.php: -------------------------------------------------------------------------------- 1 | 'required|email' 28 | 29 | ]; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Http/Requests/PasswordResetRequest.php: -------------------------------------------------------------------------------- 1 | 'required|between:3,32', 28 | 'password_confirm' => 'required|same:password', 29 | ]; 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Http/Requests/TaskRequest.php: -------------------------------------------------------------------------------- 1 | 'required|regex:/^[A-Za-z0-9\s]+$/', 30 | 'task_deadline' => 'required', 31 | ]; 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /app/OrderDetail.php: -------------------------------------------------------------------------------- 1 | hasOne('App\Product', 'id', 'product_id'); 19 | } 20 | 21 | public function getVariantAttrStr(){ 22 | $ret = ""; 23 | if($this->sku_id *1 != 0){ 24 | $ret = ProductVariant::getVariantAttrStr($this->sku_id); 25 | } 26 | return $ret; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /app/ProductAttrVal.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any authentication / authorization services. 21 | * 22 | * @return void 23 | */ 24 | public function boot() 25 | { 26 | $this->registerPolicies(); 27 | 28 | // 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'App\Listeners\EventListener', 18 | ], 19 | ]; 20 | 21 | /** 22 | * Register any events for your application. 23 | * 24 | * @return void 25 | */ 26 | public function boot() 27 | { 28 | parent::boot(); 29 | 30 | // 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /app/Roles.php: -------------------------------------------------------------------------------- 1 | hasOne('App\Product', 'id', 'product_id'); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/UserSaveSeller.php: -------------------------------------------------------------------------------- 1 | hasOne('App\User', 'id', 'seller_id'); 20 | } 21 | 22 | 23 | } 24 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /config/infyom/generator_builder.php: -------------------------------------------------------------------------------- 1 | [ 6 | 7 | 'builder' => 'infyom.generator-builder.builder', 8 | 9 | 'field-template' => 'infyom.generator-builder.field-template' 10 | ] 11 | ]; 12 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/migrations/2015_08_11_064636_add_slug_to_blogs_table.php: -------------------------------------------------------------------------------- 1 | string('slug')->nullable()->after('title'); 18 | }); 19 | } 20 | 21 | /** 22 | * Reverse the migrations. 23 | * 24 | * @return void 25 | */ 26 | public function down() 27 | { 28 | Schema::table('blogs', function(Blueprint $table) 29 | { 30 | $table->dropColumn('slug'); 31 | }); 32 | } 33 | 34 | } 35 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(AdminSeeder::class); 15 | $this->call(DatatablesSeeder::class); 16 | 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /infyomlabs/laravel-generator/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | node_modules/ 3 | .idea/ 4 | 5 | # Laravel 4 specific 6 | bootstrap/compiled.php 7 | app/storage/ 8 | 9 | # Laravel 5 & Lumen specific 10 | bootstrap/cache/ 11 | storage/ 12 | .env.*.php 13 | .env.php 14 | .env 15 | .env.example -------------------------------------------------------------------------------- /infyomlabs/laravel-generator/src/Common/BaseRepository.php: -------------------------------------------------------------------------------- 1 | find($id, $columns); 13 | } catch (Exception $e) { 14 | return; 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /infyomlabs/laravel-generator/src/Contracts/TemplatesPublisherContract.php: -------------------------------------------------------------------------------- 1 | '$API_PREFIX$', 'namespace' => 'API'], function () { 8 | Route::group(['prefix' => '$API_VERSION$'], function () { 9 | require config('infyom.laravel_generator.path.api_routes'); 10 | }); 11 | }); 12 | -------------------------------------------------------------------------------- /infyomlabs/laravel-generator/templates/api/routes/routes.stub: -------------------------------------------------------------------------------- 1 | Route::resource('$MODEL_NAME_PLURAL_CAMEL$', '$PATH_PREFIX$$MODEL_NAME$APIController'); -------------------------------------------------------------------------------- /infyomlabs/laravel-generator/templates/docs/model.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Class $MODEL_NAME$ 3 | * @package $NAMESPACE_MODEL$ 4 | */ -------------------------------------------------------------------------------- /infyomlabs/laravel-generator/templates/home_controller.stub: -------------------------------------------------------------------------------- 1 | middleware('auth'); 18 | } 19 | 20 | /** 21 | * Show the application dashboard. 22 | * 23 | * @return \Illuminate\Http\Response 24 | */ 25 | public function index() 26 | { 27 | return view('home'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /infyomlabs/laravel-generator/templates/migration.stub: -------------------------------------------------------------------------------- 1 | =5.3.0", 13 | "ext-curl": "*", 14 | "ext-json": "*" 15 | }, 16 | "autoload": 17 | { 18 | "psr-0": 19 | { 20 | "PayMoney": "src/" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /paymoney_sdk/php-sdk/src/PayMoney/Api/Payer.php: -------------------------------------------------------------------------------- 1 | paymentMethod = $method; 23 | return $this; 24 | } 25 | 26 | public function getPaymentMethod() 27 | { 28 | return $this->paymentMethod; 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /paymoney_sdk/php-sdk/src/PayMoney/Api/Saved Pictures/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/paymoney_sdk/php-sdk/src/PayMoney/Api/Saved Pictures/desktop.ini -------------------------------------------------------------------------------- /paymoney_sdk/php-sdk/src/PayMoney/Api/Transaction.php: -------------------------------------------------------------------------------- 1 | amount = $amount; 22 | return $this; 23 | } 24 | 25 | public function getAmount() 26 | { 27 | return $this->amount; 28 | } 29 | } -------------------------------------------------------------------------------- /paymoney_sdk/php-sdk/src/PayMoney/Common/PayMoneyModel.php: -------------------------------------------------------------------------------- 1 | getMethods(); 16 | foreach ($methods as $method) 17 | { 18 | if (!in_array($method->name, $this->props)) 19 | { 20 | $this->props[$method->name] = $method->name; 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /paymoney_sdk/vendor/autoload.php: -------------------------------------------------------------------------------- 1 | array($baseDir . '/php-sdk/src'), 10 | ); 11 | -------------------------------------------------------------------------------- /paymoney_sdk/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Redirect Trailing Slashes If Not A Folder... 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | RewriteCond %{REQUEST_URI} (.+)/$ 11 | RewriteRule ^ %1 [L,R=301] 12 | 13 | # Handle Front Controller... 14 | RewriteCond %{REQUEST_FILENAME} !-d 15 | RewriteCond %{REQUEST_FILENAME} !-f 16 | RewriteRule ^ index.php [L] 17 | 18 | # Handle Authorization Header 19 | RewriteCond %{HTTP:Authorization} . 20 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 21 | 22 | -------------------------------------------------------------------------------- /public/assets/css/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/assets/fonts/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/assets/images/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/assets/img/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/assets/js/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/animated-overlay.gif -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-bg_inset-hard_100_fcfdfd_1x100 (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-bg_inset-hard_100_fcfdfd_1x100 (1).png -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /public/assets/multiselect/css/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/multiselect/css/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /public/assets/multiselect/css/jquery.multiselect.filter.css: -------------------------------------------------------------------------------- 1 | .ui-multiselect-hasfilter ul { position:relative; top:2px } 2 | .ui-multiselect-filter { float:left; margin-right:10px; font-size:11px } 3 | .ui-multiselect-filter input { width:100px; font-size:10px; margin-left:5px; height:15px; padding:2px; border:1px solid #292929; -webkit-appearance:textfield; -webkit-box-sizing:content-box; } 4 | -------------------------------------------------------------------------------- /public/assets/multiselect/css/style.css: -------------------------------------------------------------------------------- 1 | body { font:12px Helvetica, arial, sans-serif } 2 | h1, h2, p { margin:10px 0 } 3 | .hidden { visibility:hidden } 4 | 5 | 6 | .message { padding:10px; margin:15px 0; display:block; text-align:left } 7 | .message-title { font-weight:bold; font-size:1.25em } 8 | .message-body { margin-top:4px } 9 | .error, .notice, .success { padding:.8em; margin-bottom:1em; border:2px solid #ddd } 10 | .error { background:#FBE3E4; color:#8a1f11; border-color:#FBC2C4 } 11 | .notice { background:#FFF6BF; color:#514721; border-color:#FFD324 } 12 | .success { background:#E6EFC2; color:#264409; border-color:#C6D880 } 13 | .error a { color:#8a1f11 } 14 | .notice a { color:#514721 } 15 | .success a { color:#264409 } 16 | 17 | -------------------------------------------------------------------------------- /public/assets/slick/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/slick/ajax-loader.gif -------------------------------------------------------------------------------- /public/assets/slick/config.rb: -------------------------------------------------------------------------------- 1 | css_dir = "." 2 | sass_dir = "." 3 | images_dir = "." 4 | fonts_dir = "fonts" 5 | relative_assets = true 6 | 7 | output_style = :compact 8 | line_comments = false 9 | 10 | preferred_syntax = :scss -------------------------------------------------------------------------------- /public/assets/slick/fonts/slick.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/slick/fonts/slick.eot -------------------------------------------------------------------------------- /public/assets/slick/fonts/slick.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/slick/fonts/slick.ttf -------------------------------------------------------------------------------- /public/assets/slick/fonts/slick.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/slick/fonts/slick.woff -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/CVS/Repository: -------------------------------------------------------------------------------- 1 | HBDB/WebRoot/images/dtree 2 | -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/CVS/Root: -------------------------------------------------------------------------------- 1 | :pserver:zhang_ym@192.168.10.239:/project/623 2 | -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/Thumbs.db -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/base.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/base.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/cd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/cd.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/empty.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/folder.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/folderopen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/folderopen.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/globe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/globe.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/imgfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/imgfolder.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/join.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/join.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/joinbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/joinbottom.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/line.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/minus.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/minusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/minusbottom.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/musicfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/musicfolder.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/nolines_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/nolines_minus.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/nolines_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/nolines_plus.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/openfoldericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/openfoldericon.png -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/page.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/plus.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/plusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/plusbottom.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/question.gif -------------------------------------------------------------------------------- /public/assets/tree/images/dtree/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/assets/tree/images/dtree/trash.gif -------------------------------------------------------------------------------- /public/assets/vendors/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/favicon.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/uploads/blog/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/category/201910171506032824.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/category/201910171506032824.jpg -------------------------------------------------------------------------------- /public/uploads/category/201910171521376709.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/category/201910171521376709.jpg -------------------------------------------------------------------------------- /public/uploads/category/201910171635463710.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/category/201910171635463710.jpg -------------------------------------------------------------------------------- /public/uploads/category/201910171636276712.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/category/201910171636276712.jpg -------------------------------------------------------------------------------- /public/uploads/category/201910171636493717.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/category/201910171636493717.mp4 -------------------------------------------------------------------------------- /public/uploads/category/201910171638488850.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/category/201910171638488850.jpg -------------------------------------------------------------------------------- /public/uploads/category/201910171658296924.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/category/201910171658296924.jpg -------------------------------------------------------------------------------- /public/uploads/category/201910171719015693.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/category/201910171719015693.pdf -------------------------------------------------------------------------------- /public/uploads/category/201910270254202515.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/category/201910270254202515.jpg -------------------------------------------------------------------------------- /public/uploads/crudfiles/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/uploads/files/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/uploads/product/20191123/0734241561.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0734241561.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0734406604.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0734406604.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0735051885.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0735051885.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0736191285.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0736191285.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0736376003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0736376003.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0737059242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0737059242.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0737516537.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0737516537.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0738252808.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0738252808.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0738252846.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0738252846.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0802353190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0802353190.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0805415045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0805415045.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0805416051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0805416051.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0806186361.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0806186361.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0807152576.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0807152576.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0807308045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0807308045.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0807457341.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0807457341.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0808075130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0808075130.png -------------------------------------------------------------------------------- /public/uploads/product/20191123/0808417769.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/20191123/0808417769.png -------------------------------------------------------------------------------- /public/uploads/product/big/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/big/1.jpg -------------------------------------------------------------------------------- /public/uploads/product/big/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/big/2.jpg -------------------------------------------------------------------------------- /public/uploads/product/big/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/big/3.jpg -------------------------------------------------------------------------------- /public/uploads/product/big/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/big/4.jpg -------------------------------------------------------------------------------- /public/uploads/product/btt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/btt.png -------------------------------------------------------------------------------- /public/uploads/product/s-l1600(1).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l1600(1).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l1600(2).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l1600(2).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l1600(3).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l1600(3).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l1600(4).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l1600(4).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l1600.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l1600.webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(1).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(1).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(10).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(10).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(11).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(11).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(12).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(12).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(13).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(13).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(2).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(2).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(3).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(3).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(4).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(4).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(5).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(5).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(6).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(6).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(7).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(7).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(8).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(8).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200(9).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200(9).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l200.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l200.webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(1).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l225(1).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(1).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(10).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(10).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(11).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(11).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(12).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(12).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(13).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(13).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(14).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(14).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(2).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l225(2).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(2).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(3).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l225(3).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(3).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(4).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(4).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l225(4).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(4).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(5).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(5).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l225(5).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(5).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(6).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(6).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l225(6).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(6).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(7).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(7).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l225(7).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(7).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(8).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(8).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l225(8).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(8).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225(9).webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225(9).webp -------------------------------------------------------------------------------- /public/uploads/product/s-l225.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225.jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l225.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l225.webp -------------------------------------------------------------------------------- /public/uploads/product/s-l300(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l300(1).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l300(2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l300(2).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l300(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l300(3).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l300(4).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l300(4).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l300(5).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l300(5).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l300(6).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l300(6).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l300(7).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l300(7).jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l300.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l300.jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l400.jpg -------------------------------------------------------------------------------- /public/uploads/product/s-l960.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s-l960.webp -------------------------------------------------------------------------------- /public/uploads/product/s_1x2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/s_1x2.gif -------------------------------------------------------------------------------- /public/uploads/product/small/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/small/1.jpg -------------------------------------------------------------------------------- /public/uploads/product/small/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/small/2.jpg -------------------------------------------------------------------------------- /public/uploads/product/small/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/small/3.jpg -------------------------------------------------------------------------------- /public/uploads/product/small/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/public/uploads/product/small/4.jpg -------------------------------------------------------------------------------- /public/uploads/users/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/api/docs/controller/controller.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Class $MODEL_NAME$Controller 3 | * @package $NAMESPACE_API_CONTROLLER$ 4 | */ 5 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/api/docs/controller/destroy.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Remove the specified $MODEL_NAME$ from storage. 3 | * DELETE /$MODEL_NAME_PLURAL_CAMEL$/{id} 4 | * 5 | * @param int $id 6 | * 7 | * @return Response 8 | */ -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/api/docs/controller/index.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Display a listing of the $MODEL_NAME$. 3 | * GET|HEAD /$MODEL_NAME_PLURAL_CAMEL$ 4 | * 5 | * @param Request $request 6 | * @return Response 7 | */ -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/api/docs/controller/show.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Display the specified $MODEL_NAME$. 3 | * GET|HEAD /$MODEL_NAME_PLURAL_CAMEL$/{id} 4 | * 5 | * @param int $id 6 | * 7 | * @return Response 8 | */ -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/api/docs/controller/store.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Store a newly created $MODEL_NAME$ in storage. 3 | * POST /$MODEL_NAME_PLURAL_CAMEL$ 4 | * 5 | * @param Create$MODEL_NAME$APIRequest $request 6 | * 7 | * @return Response 8 | */ -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/api/docs/controller/update.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Update the specified $MODEL_NAME$ in storage. 3 | * PUT/PATCH /$MODEL_NAME_PLURAL_CAMEL$/{id} 4 | * 5 | * @param int $id 6 | * @param Update$MODEL_NAME$APIRequest $request 7 | * 8 | * @return Response 9 | */ -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/api/request/create_request.stub: -------------------------------------------------------------------------------- 1 | '$API_PREFIX$', 'namespace' => 'API'], function () { 8 | Route::group(['prefix' => '$API_VERSION$'], function () { 9 | require config('infyom.laravel_generator.path.api_routes'); 10 | }); 11 | }); 12 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/api/routes/routes.stub: -------------------------------------------------------------------------------- 1 | Route::resource('$MODEL_NAME_PLURAL_CAMEL$', '$PATH_PREFIX$$MODEL_NAME$APIController'); -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/docs/model.stub: -------------------------------------------------------------------------------- 1 | /** 2 | * Class $MODEL_NAME$ 3 | * @package $NAMESPACE_MODEL$ 4 | */ -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/home_controller.stub: -------------------------------------------------------------------------------- 1 | middleware('auth'); 18 | } 19 | 20 | /** 21 | * Show the application dashboard. 22 | * 23 | * @return \Illuminate\Http\Response 24 | */ 25 | public function index() 26 | { 27 | return view('home'); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/migration.stub: -------------------------------------------------------------------------------- 1 | $RELATION$(\$NAMESPACE_MODEL$\$RELATION_MODEL_NAME$::class$INPUT_FIELDS$); 7 | } -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/repository.stub: -------------------------------------------------------------------------------- 1 | getEmailForPasswordReset()) }}"> {{ $link }} 2 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/bool-checkbox.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | 7 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/boolean.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | 7 |
8 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/checkbox.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | 7 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/checkbox_group.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | $CHECKBOXES$ 5 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/date.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | {!! Form::date('$FIELD_NAME$', null, ['class' => 'form-control']) !!} 5 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/email.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | {!! Form::email('$FIELD_NAME$', null, ['class' => 'form-control']) !!} 5 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/file.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | {!! Form::file('$FIELD_NAME$') !!} 5 |
6 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/number.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | {!! Form::number('$FIELD_NAME$', null, ['class' => 'form-control']) !!} 5 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/password.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | {!! Form::password('$FIELD_NAME$', ['class' => 'form-control']) !!} 5 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/radio.stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/radio_group.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | $RADIO_BUTTONS$ 5 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/select.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | {!! Form::select('$FIELD_NAME$', $INPUT_ARR$, null, ['class' => 'form-control']) !!} 5 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/text.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | {!! Form::text('$FIELD_NAME$', null, ['class' => 'form-control']) !!} 5 |
-------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/textarea.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 | {!! Form::textarea('$FIELD_NAME$', null, ['class' => 'form-control', 'rows' => '5']) !!} 5 |
6 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/fields/toggle-switch.stub: -------------------------------------------------------------------------------- 1 | 2 |
3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!}
4 | 8 |
9 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/layouts/datatables_css.stub: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/layouts/datatables_js.stub: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/layouts/home.stub: -------------------------------------------------------------------------------- 1 | @extends('layouts.app') 2 | 3 | @section('content') 4 |
5 |
6 |
7 |
8 |
Dashboard
9 | 10 |
11 | You are logged in! 12 |
13 |
14 |
15 |
16 |
17 | @endsection 18 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/layouts/menu.stub: -------------------------------------------------------------------------------- 1 |
  • 2 | Home 3 |
  • 4 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/layouts/menu_template.stub: -------------------------------------------------------------------------------- 1 |
  • 2 | 3 | 5 | $MODEL_NAME_PLURAL$ 6 | 7 |
  • 8 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/layouts/sidebar.stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/request/create_request.stub: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 |

    @if( $$MODEL_NAME_CAMEL$->$FIELD_NAME$ =='1') true @else false @endif

    5 |
    6 |
    -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/views/checkbox_table_cell.stub: -------------------------------------------------------------------------------- 1 | 2 | @if($$MODEL_NAME_CAMEL$->$FIELD_NAME$ =='1') true @else false @endif 3 | 4 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/views/datatable_column.stub: -------------------------------------------------------------------------------- 1 | '$FIELD_NAME$' => ['name' => '$FIELD_NAME$', 'data' => '$FIELD_NAME$'] -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/views/fields.stub: -------------------------------------------------------------------------------- 1 | $FIELDS$ 2 | 3 | 4 |
    5 | {!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} 6 | Cancel 7 |
    8 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/views/paginate.stub: -------------------------------------------------------------------------------- 1 | 2 | @include('core-templates::common.paginate', ['records' => $$MODEL_NAME_PLURAL_CAMEL$]) 3 | -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/views/show_field.stub: -------------------------------------------------------------------------------- 1 | 2 |
    3 | {!! Form::label('$FIELD_NAME$', '$FIELD_NAME_TITLE$:') !!} 4 |

    {!! $$MODEL_NAME_CAMEL$->$FIELD_NAME$ !!}

    5 |
    6 |
    -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/views/table_cell.stub: -------------------------------------------------------------------------------- 1 | {!! $$MODEL_NAME_CAMEL$->$FIELD_NAME$ !!} -------------------------------------------------------------------------------- /resources/infyom/infyom-generator-templates/scaffold/views/table_header.stub: -------------------------------------------------------------------------------- 1 | $FIELD_NAME_TITLE$ -------------------------------------------------------------------------------- /resources/lang/de/auth/form.php: -------------------------------------------------------------------------------- 1 | 'Passwort', 10 | 'email' => 'Email', 11 | 'newemail' => 'Neue Email', 12 | 'confirmemail' => 'Email bestätigen', 13 | 'firstname' => 'Vorname', 14 | 'lastname' => 'Nachname', 15 | 'newpassword' => 'Neues Passwort', 16 | 'website' => 'Webseite', 17 | 'country' => 'Land', 18 | 'gravataremail' => 'Gravatar Email', 19 | 'changegravatar' => 'Avatar ändern auf Gravatar.com', 20 | 'oldpassword' => 'Altes Passwort', 21 | 'confirmpassword' => 'Passwort bestätigen', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/de/blog/modal.php: -------------------------------------------------------------------------------- 1 | 'Sind Sie sicher, dass Sie diesen Blog löschen möchten? Dieser Vorgang kann nicht rückgängig gemacht werden.', 10 | 'cancel' => 'Abbrechen', 11 | 'confirm' => 'Löschen', 12 | 'title' => 'Blog löschen', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/de/blog/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'title' => 'Titel', 11 | 'comments' => 'Anzahl der Kommentare', 12 | 'created_at' => 'Erstellt am', 13 | 'actions' => 'Aktionen', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/de/blog/title.php: -------------------------------------------------------------------------------- 1 | 'Titel', 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /resources/lang/de/blogcategory/form.php: -------------------------------------------------------------------------------- 1 | 'Blog Kategorie Name', 9 | 'general' => 'Allgemein', 10 | ); 11 | -------------------------------------------------------------------------------- /resources/lang/de/blogcategory/modal.php: -------------------------------------------------------------------------------- 1 | 'Sind Sie sicher, dass Sie diese Blog Kategorie löschen möchten? Dieser Vorgang kann nicht rückgängig gemacht werden.', 10 | 'cancel' => 'Abbrechen', 11 | 'confirm' => 'Löschen', 12 | 'title' => 'Löschen der Blog Kategorie', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/de/blogcategory/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Name', 11 | 'blogs' => 'Anzahl der Blogs', 12 | 'created_at' => 'Erstellt am', 13 | 'actions' => 'Aktionen', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/de/blogcategory/title.php: -------------------------------------------------------------------------------- 1 | 'Titel', 10 | 'create' => 'Neue Blog Kategorie erstellen', 11 | 'edit' => 'Bearbeiten der Blog Kategorie', 12 | 'management' => 'Verwalten der Blog Kategorien', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/de/button.php: -------------------------------------------------------------------------------- 1 | 'Bearbeiten', 9 | 'delete' => 'Löschen', 10 | 'restore' => 'Wiederherstellen', 11 | 'publish' => 'Veröffentlichen', 12 | 'save' => 'Speichern', 13 | 'submit' => 'einreichen', 14 | 'cancel' => 'Abbrechen', 15 | 'create' => 'Erstellen', 16 | 'back' => 'Zurück', 17 | 'signin' => 'Anmelden', 18 | 'forgotpassword' => 'Ich habe mein Passwort vergessen', 19 | 'rememberme' => 'Passwort merken', 20 | 'signup' => 'Eintragen', 21 | 'update' => 'Update', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/de/general.php: -------------------------------------------------------------------------------- 1 | 'Nein', 8 | 'noresults' => 'Keine Ergebnisse', 9 | 'yes' => 'Ja', 10 | 'site_name' => 'Seiten Name' 11 | ); 12 | -------------------------------------------------------------------------------- /resources/lang/de/groups/form.php: -------------------------------------------------------------------------------- 1 | 'Gruppen Name', 9 | 'slug' => 'Slug', 10 | 'general' => 'Allgemein', 11 | 'permissions' => 'Berechtigungen', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/de/groups/modal.php: -------------------------------------------------------------------------------- 1 | 'Gruppe Löschen', 10 | 'body' => 'Sind Sie sicher, dass Sie diese Gruppe löschen möchten? Dieser Vorgang kann nicht rückgängig gemacht werden.', 11 | 'cancel' => 'Abbrechen', 12 | 'confirm' => 'Löschen', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/de/groups/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Name', 11 | 'users' => 'nzahl Benutzer', 12 | 'created_at' => 'Erstellt am', 13 | 'actions' => 'Aktionen', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/de/groups/title.php: -------------------------------------------------------------------------------- 1 | 'Neue Gruppe erstellen', 10 | 'edit' => 'Gruppe bearbeiten', 11 | 'management' => 'Gruppe verwalten', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/de/modal.php: -------------------------------------------------------------------------------- 1 | 'Artikel löschen', 10 | 'body' => 'Sind Sie sicher, dass Sie diesen Artikel löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden.', 11 | 'cancel' => 'Abbrechen', 12 | 'confirm' => 'Löschen', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/de/pagination.php: -------------------------------------------------------------------------------- 1 | '« Zurück', 17 | 'next' => 'Nächste »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/de/users/modal.php: -------------------------------------------------------------------------------- 1 | 'Sind Sie sicher, dass Sie diesen Benutzer löschen möchten? Dieser Vorgang kann nicht rückgängig gemacht werden.', 10 | 'cancel' => 'Abrechen', 11 | 'confirm' => 'Löschen', 12 | 'title' => 'Benutzer Löschen', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/de/users/title.php: -------------------------------------------------------------------------------- 1 | 'Benutzer Profil', 10 | 'first_name' => 'Vorname', 11 | 'last_name' => 'Nachname', 12 | 'email' => 'E-mail', 13 | 'phone' => 'Telefon', 14 | 'address' => 'Adresse', 15 | 'city' => 'Stadt', 16 | 'status' => 'Status', 17 | 'created_at' => 'Erstellt am', 18 | 'select_image' => 'Bild auswählen', 19 | 'gender' => 'Geschlecht', 20 | 'dob' => 'Geburtsdatum', 21 | 'country' => 'Land', 22 | 'state' => 'Bundesland', 23 | 'postal' => 'Postleitzahl' 24 | 25 | ); 26 | -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- 1 | 'These credentials do not match our records.', 17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/auth/form.php: -------------------------------------------------------------------------------- 1 | 'Password', 10 | 'email' => 'Email', 11 | 'newemail' => 'New Email', 12 | 'confirmemail' => 'Confirm Email', 13 | 'firstname' => 'First Name', 14 | 'lastname' => 'Last Name', 15 | 'newpassword' => 'New Password', 16 | 'website' => 'Website', 17 | 'country' => 'Country', 18 | 'gravataremail' => 'Gravatar Email', 19 | 'changegravatar' => 'Change your avatar at Gravatar.com', 20 | 'oldpassword' => 'Current Password', 21 | 'confirmpassword' => 'Confirm Password', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/en/blog/modal.php: -------------------------------------------------------------------------------- 1 | 'Are you sure to delete this blog? This operation is irreversible.', 10 | 'cancel' => 'Cancel', 11 | 'confirm' => 'Delete', 12 | 'title' => 'Delete Blog', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/en/blog/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'title' => 'Title', 11 | 'comments' => 'No. of Comments', 12 | 'created_at' => 'Created at', 13 | 'actions' => 'Actions', 14 | 'view-blog-comment' => 'view blog & comments', 15 | 'update-blog' => 'update blog', 16 | 'delete-blog' => 'delete blog' 17 | 18 | ); 19 | -------------------------------------------------------------------------------- /resources/lang/en/blog/title.php: -------------------------------------------------------------------------------- 1 | 'Title', 10 | 'create' => 'Create New Blog', 11 | 'edit' => 'Edit Blog', 12 | 'management' => 'Manage Blog', 13 | 'add-blog' => 'Add New Blog', 14 | 'blog' => 'Blog', 15 | 'blogs' => 'Blogs', 16 | 'bloglist' => 'Blogs List', 17 | 'blogdetail' => 'Blog Details', 18 | 'comments' => 'COMMENTS', 19 | 'leavecomment' => 'LEAVE A COMMENT', 20 | 21 | 22 | ); 23 | -------------------------------------------------------------------------------- /resources/lang/en/blogcategory/form.php: -------------------------------------------------------------------------------- 1 | 'Blog Category Name', 9 | 'general' => 'General', 10 | 'categoryname' => 'Category name', 11 | 'update-blog' => 'update blog', 12 | 'blogcategoryexists' => 'Blog category exists', 13 | 'deleteblogcategory' => 'Delete blog category', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/en/blogcategory/modal.php: -------------------------------------------------------------------------------- 1 | 'Are you sure to delete this blog category? This operation is irreversible.', 10 | 'cancel' => 'Cancel', 11 | 'confirm' => 'Delete', 12 | 'title' => 'Delete Blog category', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/en/blogcategory/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Name', 11 | 'blogs' => 'No. of Blogs', 12 | 'created_at' => 'Created at', 13 | 'actions' => 'Actions', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/en/blogcategory/title.php: -------------------------------------------------------------------------------- 1 | 'Title', 10 | 'create' => 'Create New Blog Category', 11 | 'edit' => 'Edit Blog Category', 12 | 'management' => 'Manage Blog Categories', 13 | 'blogcategories' => 'Blog', 14 | 'groups' => 'Groups', 15 | 'categories' => 'Categories', 16 | 'blogcategorylist' => 'Blog Categories List', 17 | ); 18 | -------------------------------------------------------------------------------- /resources/lang/en/button.php: -------------------------------------------------------------------------------- 1 | 'Edit', 9 | 'delete' => 'Delete', 10 | 'restore' => 'Restore', 11 | 'publish' => 'Publish', 12 | 'save' => 'Save', 13 | 'submit' => 'Submit', 14 | 'cancel' => 'Cancel', 15 | 'create' => 'Create', 16 | 'back' => 'Back', 17 | 'signin' => 'Sign in', 18 | 'forgotpassword' => 'I forgot my password', 19 | 'rememberme' => 'Remember me', 20 | 'signup' => 'Sign-Up', 21 | 'update' => 'Update', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/en/general.php: -------------------------------------------------------------------------------- 1 | 'No', 9 | 'noresults' => 'No Results', 10 | 'yes' => 'Yes', 11 | 'site_name' => 'SiteName', 12 | 'home' => 'Home', 13 | 'dashboard' => 'Dashboard', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/en/groups/form.php: -------------------------------------------------------------------------------- 1 | 'Group Name', 9 | 'slug' => 'Slug', 10 | 'general' => 'General', 11 | 'permissions' => 'Permissions', 12 | 'users_exists' => 'users exists', 13 | 'delete_group' => 'delete group', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/en/groups/modal.php: -------------------------------------------------------------------------------- 1 | 'Delete Group', 10 | 'body' => 'Are you sure to delete this group? This operation is irreversible.', 11 | 'cancel' => 'Cancel', 12 | 'confirm' => 'Delete', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/en/groups/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Name', 11 | 'users' => 'No. of Users', 12 | 'created_at' => 'Created at', 13 | 'actions' => 'Actions', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/en/groups/title.php: -------------------------------------------------------------------------------- 1 | 'Create New Group', 10 | 'edit' => 'Edit Group', 11 | 'management' => 'Manage Groups', 12 | 'groups' => 'Groups', 13 | 'groups_list' => 'Groups List', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/en/modal.php: -------------------------------------------------------------------------------- 1 | 'Delete item', 10 | 'body' => 'Are you sure to delete this item? This operation is irreversible.', 11 | 'cancel' => 'Cancel', 12 | 'confirm' => 'Delete', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/en/users/modal.php: -------------------------------------------------------------------------------- 1 | 'Are you sure to delete this user? This operation is irreversible.', 10 | 'cancel' => 'Cancel', 11 | 'confirm' => 'Delete', 12 | 'title' => 'Delete User', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/en/users/title.php: -------------------------------------------------------------------------------- 1 | 'User Profile', 10 | 'first_name' => 'First Name', 11 | 'last_name' => 'Last Name', 12 | 'email' => 'E-mail', 13 | 'phone' => 'Phone Number', 14 | 'address' => 'Address', 15 | 'city' => 'City', 16 | 'status' => 'Status', 17 | 'created_at' => 'Created At', 18 | 'select_image' => 'Select Image', 19 | 'gender' => 'Gender / Sex', 20 | 'dob' => 'Birth Date', 21 | 'country' => 'Country', 22 | 'state' => 'State', 23 | 'postal' => 'Postal / Zip code' 24 | 25 | ); 26 | -------------------------------------------------------------------------------- /resources/lang/es/auth/form.php: -------------------------------------------------------------------------------- 1 | 'Contraseña', 10 | 'email' => 'Email', 11 | 'newemail' => 'Email Nuevo', 12 | 'confirmemail' => 'Confirmar Email', 13 | 'firstname' => 'Nombre', 14 | 'lastname' => 'Apellido', 15 | 'newpassword' => 'Contraseña Nueva', 16 | 'website' => 'Sitio Web', 17 | 'country' => 'País', 18 | 'gravataremail' => 'Email de Gravatar', 19 | 'changegravatar' => 'Cambiar su avatar en Gravatar.com', 20 | 'oldpassword' => 'Contraseña Actual', 21 | 'confirmpassword' => 'Confirmar Contraseña', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/es/blog/modal.php: -------------------------------------------------------------------------------- 1 | 'Está seguro que quiere borrar este blog? Esto es irreversible.', 10 | 'cancel' => 'Cancelar', 11 | 'confirm' => 'Borrar', 12 | 'title' => 'Borra Blog', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/es/blog/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'title' => 'Título', 11 | 'comments' => 'N° de Comentarios', 12 | 'created_at' => 'Creado el', 13 | 'actions' => 'Acciones', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/es/blog/title.php: -------------------------------------------------------------------------------- 1 | 'Título', 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /resources/lang/es/blogcategory/form.php: -------------------------------------------------------------------------------- 1 | 'Nombre de la Categoría del Blog', 9 | 'general' => 'General', 10 | ); 11 | -------------------------------------------------------------------------------- /resources/lang/es/blogcategory/modal.php: -------------------------------------------------------------------------------- 1 | 'Está seguro que quiere borrar esta categoria del blog? Esto es irreversible.', 10 | 'cancel' => 'Cancelar', 11 | 'confirm' => 'Borrar', 12 | 'title' => 'Borrar Categoría del Blog', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/es/blogcategory/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Nombre', 11 | 'blogs' => 'N° de Blogs', 12 | 'created_at' => 'Creado el ', 13 | 'actions' => 'Acciones', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/es/blogcategory/title.php: -------------------------------------------------------------------------------- 1 | 'Título', 10 | 'create' => 'Crear una Nueva Categoría del Blog', 11 | 'edit' => 'Editar Categoría del Blog', 12 | 'management' => 'Administrar Categorías del Blog', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/es/button.php: -------------------------------------------------------------------------------- 1 | 'Editar', 9 | 'delete' => 'Borrar', 10 | 'restore' => 'Restaurar', 11 | 'publish' => 'Publicar', 12 | 'save' => 'Guardar', 13 | 'submit' => 'Enviar', 14 | 'cancel' => 'Cancelar', 15 | 'create' => 'Crear', 16 | 'back' => 'Volver', 17 | 'signin' => 'Entrar', 18 | 'forgotpassword' => 'Olvide mi contraseña', 19 | 'rememberme' => 'Recordarme', 20 | 'signup' => 'Registrarse', 21 | 'update' => 'Actualizar', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/es/general.php: -------------------------------------------------------------------------------- 1 | 'No', 9 | 'noresults' => 'Sin Resultados', 10 | 'yes' => 'Si', 11 | 'site_name' => 'Nombre del Sitio' 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/es/groups/form.php: -------------------------------------------------------------------------------- 1 | 'Nombre del Grupo', 9 | 'slug' => 'Slug', 10 | 'general' => 'General', 11 | 'permissions' => 'Permisos', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/es/groups/modal.php: -------------------------------------------------------------------------------- 1 | 'Borrar Grupo', 10 | 'body' => 'Está seguro que quiere borrear este grupo? Esto es irreversible.', 11 | 'cancel' => 'Cancelar', 12 | 'confirm' => 'Borrar', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/es/groups/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Nombre', 11 | 'users' => 'N° de Usuarios', 12 | 'created_at' => 'Creado el', 13 | 'actions' => 'Acciones', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/es/groups/title.php: -------------------------------------------------------------------------------- 1 | 'Crear un Grupo Nuevo', 10 | 'edit' => 'Editar Grupo', 11 | 'management' => 'Administrar Grupos', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/es/modal.php: -------------------------------------------------------------------------------- 1 | 'Borrar registro', 10 | 'body' => 'Está seguro que quiere borrar este registro? Esto es irreversible.', 11 | 'cancel' => 'Cancelar', 12 | 'confirm' => 'Borrar', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/es/pagination.php: -------------------------------------------------------------------------------- 1 | '« Anterior', 17 | 'next' => 'Siguiente »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/es/users/modal.php: -------------------------------------------------------------------------------- 1 | 'Está seguro que quiere borrar este usuario? Esto es irreversible.', 10 | 'cancel' => 'Cancelar', 11 | 'confirm' => 'Borrar', 12 | 'title' => 'Borrar Usuario', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/es/users/title.php: -------------------------------------------------------------------------------- 1 | 'Perfil de Usuario', 10 | 'first_name' => 'Nombre', 11 | 'last_name' => 'Apellido', 12 | 'email' => 'E-mail', 13 | 'phone' => 'Número de Teléfono', 14 | 'address' => 'Dirección', 15 | 'city' => 'Ciudad', 16 | 'status' => 'Estado', 17 | 'created_at' => 'Creado el', 18 | 'select_image' => 'Seleccionar Imágen', 19 | 'gender' => 'Sexo', 20 | 'dob' => 'Fecha de Nacimiento', 21 | 'country' => 'País', 22 | 'state' => 'Estado', 23 | 'postal' => 'Código Postal' 24 | 25 | ); 26 | -------------------------------------------------------------------------------- /resources/lang/fr/auth/form.php: -------------------------------------------------------------------------------- 1 | 'Mot de passe', 10 | 'email' => 'Email', 11 | 'newemail' => 'Nouvel Email', 12 | 'confirmemail' => "Confirmation de l'email", 13 | 'firstname' => 'Prénom', 14 | 'lastname' => 'Nom', 15 | 'newpassword' => 'Nouveau mot de passe', 16 | 'website' => 'Site internet', 17 | 'country' => 'Pays', 18 | 'gravataremail' => 'Email Gravatar', 19 | 'changegravatar' => 'Changer votre avatar sur Gravatar.com', 20 | 'oldpassword' => 'Mot de passe actuel', 21 | 'confirmpassword' => 'Confirmation du mot de passe', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/fr/blog/modal.php: -------------------------------------------------------------------------------- 1 | 'Êtes-vous sûr de vouloir supprimer ce blog ? Cette opération est irréverssible.', 10 | 'cancel' => 'Annuler', 11 | 'confirm' => 'Supprimer', 12 | 'title' => 'Supression du blog', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/fr/blog/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'title' => 'Title', 11 | 'comments' => 'No. of Comments', 12 | 'created_at' => 'Created at', 13 | 'actions' => 'Actions', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/fr/blog/title.php: -------------------------------------------------------------------------------- 1 | 'Titre', 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /resources/lang/fr/blogcategory/form.php: -------------------------------------------------------------------------------- 1 | 'Nom de la catégorie du blog', 9 | 'general' => 'General', 10 | ); 11 | -------------------------------------------------------------------------------- /resources/lang/fr/blogcategory/modal.php: -------------------------------------------------------------------------------- 1 | 'Êtes-vous sûr de vouloir supprimer cette catégorie de blog ? Cette opération est irréverssible.', 10 | 'cancel' => 'Annuler', 11 | 'confirm' => 'Supprimer', 12 | 'title' => 'Supprimer la catégorie de blog', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/fr/blogcategory/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Name', 11 | 'blogs' => 'No. of Blogs', 12 | 'created_at' => 'Created at', 13 | 'actions' => 'Actions', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/fr/blogcategory/title.php: -------------------------------------------------------------------------------- 1 | 'Titre', 10 | 'create' => 'Créer une nouvelle catégorie de blog', 11 | 'edit' => 'Éditer la catégorie de blog', 12 | 'management' => 'Organiser les catégories de blog', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/fr/button.php: -------------------------------------------------------------------------------- 1 | 'Editer', 9 | 'delete' => 'Supprimer', 10 | 'restore' => 'Restaurer', 11 | 'publish' => 'Publier', 12 | 'save' => 'Sauvegarder', 13 | 'submit' => 'Envoyer', 14 | 'cancel' => 'Annuler', 15 | 'create' => 'Créer', 16 | 'back' => 'Retour', 17 | 'signin' => "S'identifier", 18 | 'forgotpassword' => "J'ai oublié mon mot de passe", 19 | 'rememberme' => 'Se souvenir de moi', 20 | 'signup' => "S'enregistrer", 21 | 'update' => 'Mettre à jour', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/fr/general.php: -------------------------------------------------------------------------------- 1 | 'Non', 9 | 'noresults' => 'Pas de résultats', 10 | 'yes' => 'Oui', 11 | 'site_name' => 'Nom de la page' 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/fr/groups/form.php: -------------------------------------------------------------------------------- 1 | 'Nom du groupe', 9 | 'slug' => 'Slug', 10 | 'general' => 'General', 11 | 'permissions' => 'Permissions', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/fr/groups/modal.php: -------------------------------------------------------------------------------- 1 | 'Supprimer le groupe', 10 | 'body' => 'Êtes-vous sûr de vouloir supprimer ce groupe ? Cette opération est irréverssible.', 11 | 'cancel' => 'Annuler', 12 | 'confirm' => 'Supprimer', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/fr/groups/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Nom', 11 | 'users' => "Nb d'utilisateurs", 12 | 'created_at' => 'Créé le', 13 | 'actions' => 'Actions', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/fr/groups/title.php: -------------------------------------------------------------------------------- 1 | 'Créer un nouveau groupe', 10 | 'edit' => 'Éditer le groupe', 11 | 'management' => 'Organiser les groupes', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/fr/modal.php: -------------------------------------------------------------------------------- 1 | "Supprimer l'élément", 10 | 'body' => 'Êtes-vous sûr de vouloir supprimer cet élément ? Cette opération est irréverssible.', 11 | 'cancel' => 'Annuler', 12 | 'confirm' => 'Supprimer', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/fr/pagination.php: -------------------------------------------------------------------------------- 1 | '« Précédent', 17 | 'next' => 'Suivant »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/fr/users/modal.php: -------------------------------------------------------------------------------- 1 | 'Êtes-vous sûr de vouloir supprimer cet utilisateur ? Cette opération est irréverssible.', 10 | 'cancel' => 'Annuler', 11 | 'confirm' => 'Supprimer', 12 | 'title' => "Supprimer l'utilisateur", 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/fr/users/title.php: -------------------------------------------------------------------------------- 1 | 'Profil utilisateur', 10 | 'first_name' => 'Prénom', 11 | 'last_name' => 'Nom', 12 | 'email' => 'E-mail', 13 | 'phone' => 'Numéro de téléphone', 14 | 'address' => 'Adresse', 15 | 'city' => 'Ville', 16 | 'status' => 'Statut', 17 | 'created_at' => 'Créé le', 18 | 'select_image' => 'Selectionner une image', 19 | 'gender' => 'Sexe', 20 | 'dob' => 'Date de naissance', 21 | 'country' => 'Pays', 22 | 'state' => 'Région', 23 | 'postal' => 'Code postal' 24 | 25 | ); 26 | -------------------------------------------------------------------------------- /resources/lang/nl/auth/form.php: -------------------------------------------------------------------------------- 1 | 'Wachtwoord', 10 | 'email' => 'E-mail adres', 11 | 'newemail' => 'Nieuw e-mail adres ', 12 | 'confirmemail' => 'Bevestig uw e-mail adres', 13 | 'firstname' => 'Voornaam', 14 | 'lastname' => 'Achternaam', 15 | 'newpassword' => 'Nieuw wachtwoord', 16 | 'website' => 'Website', 17 | 'country' => 'Land', 18 | 'gravataremail' => 'Gravatar e-mail', 19 | 'changegravatar' => 'Verander uw Gravatar op Gravatar.com', 20 | 'oldpassword' => 'Huidig wachtwoord', 21 | 'confirmpassword' => 'Bevestig wachtwoord', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/nl/blog/modal.php: -------------------------------------------------------------------------------- 1 | 'Weet je zeker dat je deze blog wilt verwijderen? Deze actie is niet terug te draaien.', 10 | 'cancel' => 'Cancel', 11 | 'confirm' => 'Verwijder', 12 | 'title' => 'Verwijder Blog', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/nl/blog/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'title' => 'Titel', 11 | 'comments' => 'Aantal reacties', 12 | 'created_at' => 'Gemaakt op', 13 | 'actions' => 'Acties', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/nl/blog/title.php: -------------------------------------------------------------------------------- 1 | 'Titel', 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /resources/lang/nl/blogcategory/form.php: -------------------------------------------------------------------------------- 1 | 'Blog categorie naam', 9 | 'general' => 'Algemeen', 10 | ); 11 | -------------------------------------------------------------------------------- /resources/lang/nl/blogcategory/modal.php: -------------------------------------------------------------------------------- 1 | 'Weet je zeker dat je deze blog categorie wilt verwijderen? Deze actie is niet terug te draaien.', 10 | 'cancel' => 'Cancel', 11 | 'confirm' => 'Verwijder', 12 | 'title' => 'Verwijder Blog categorie', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/nl/blogcategory/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Naam', 11 | 'blogs' => 'Aantal blogs', 12 | 'created_at' => 'Gemaakt op', 13 | 'actions' => 'Acties', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/nl/blogcategory/title.php: -------------------------------------------------------------------------------- 1 | 'Titel', 10 | 'create' => 'Maak een nieuwe blog categorie', 11 | 'edit' => 'Wijzig blog categorie', 12 | 'management' => 'Beheer uw blog categorieën', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/nl/button.php: -------------------------------------------------------------------------------- 1 | 'Wijzig', 9 | 'delete' => 'Verwijder', 10 | 'restore' => 'Herstel', 11 | 'publish' => 'Publiceren', 12 | 'save' => 'Opslaan', 13 | 'submit' => 'Verstuur', 14 | 'cancel' => 'Cancel', 15 | 'create' => 'Creër', 16 | 'back' => 'Terug', 17 | 'signin' => 'Log in', 18 | 'forgotpassword' => 'Ik mijn mijn wachtwoord vergeten', 19 | 'rememberme' => 'Onthoud mij', 20 | 'signup' => 'Meld je aan', 21 | 'update' => 'Update', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/nl/general.php: -------------------------------------------------------------------------------- 1 | 'Nee', 9 | 'noresults' => 'Geen resultaten', 10 | 'yes' => 'Ja', 11 | 'site_name' => 'Pagina Naam' 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/nl/groups/form.php: -------------------------------------------------------------------------------- 1 | 'Groep naam', 9 | 'slug' => 'Slug', 10 | 'general' => 'Algemeen', 11 | 'permissions' => 'Machtigingen', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/nl/groups/modal.php: -------------------------------------------------------------------------------- 1 | 'Verwijder groep', 10 | 'body' => 'Weet je zeker dat je deze groep wilt verwijderen? Deze actie is niet terug te draaien.', 11 | 'cancel' => 'Cancel', 12 | 'confirm' => 'Verwijder', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/nl/groups/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Naam', 11 | 'users' => 'Aantal gebruikers', 12 | 'created_at' => 'Gemaakt op', 13 | 'actions' => 'Acties', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/nl/groups/title.php: -------------------------------------------------------------------------------- 1 | 'Maak een nieuwe groep', 10 | 'edit' => 'Wijzig groep', 11 | 'management' => 'Beheer groepen', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/nl/modal.php: -------------------------------------------------------------------------------- 1 | 'Verwijder item', 10 | 'body' => 'Weet je zeker dat je dit item wil verwijderen? Deze actie is niet terug te draaien.', 11 | 'cancel' => 'Cancel', 12 | 'confirm' => 'Verwijder', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/nl/pagination.php: -------------------------------------------------------------------------------- 1 | '« Vorige', 17 | 'next' => 'Volgende »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/nl/users/modal.php: -------------------------------------------------------------------------------- 1 | 'Weet je zeker dat je deze gebruiker wilt verwijderen? Deze actie is niet terug te draaien.', 10 | 'cancel' => 'Cancel', 11 | 'confirm' => 'Verwijder', 12 | 'title' => 'Verwijder gebruiker', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/nl/users/title.php: -------------------------------------------------------------------------------- 1 | 'Gebruikersprofiel', 10 | 'first_name' => 'Voornaam', 11 | 'last_name' => 'Achternaam', 12 | 'email' => 'E-mail', 13 | 'phone' => 'Telefoonnummer', 14 | 'address' => 'Adres', 15 | 'city' => 'Stad', 16 | 'status' => 'Status', 17 | 'created_at' => 'Gemaakt op', 18 | 'select_image' => 'Selecteer afbeelding', 19 | 'gender' => 'Geslacht', 20 | 'dob' => 'Geboortedatum', 21 | 'country' => 'Land', 22 | 'state' => 'Provincie', 23 | 'postal' => 'Postcode' 24 | 25 | ); 26 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/auth/form.php: -------------------------------------------------------------------------------- 1 | 'Senha', 10 | 'email' => 'Email', 11 | 'newemail' => 'Novo Email', 12 | 'confirmemail' => 'Confirmar Email', 13 | 'firstname' => 'Primeiro Nome', 14 | 'lastname' => 'Último Nome', 15 | 'newpassword' => 'Nova Senha', 16 | 'website' => 'Web Site', 17 | 'country' => 'País', 18 | 'gravataremail' => 'Email Gravatar', 19 | 'changegravatar' => 'Mude seu Avatar em Gravatar.com', 20 | 'oldpassword' => 'Senha Atual', 21 | 'confirmpassword' => 'Confirme a Senha', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/blog/modal.php: -------------------------------------------------------------------------------- 1 | 'Tem certeza que quer apagar o artigo? Essa operação é irreversível.', 10 | 'cancel' => 'Cancelar', 11 | 'confirm' => 'Apagar', 12 | 'title' => 'Apagar Artigo', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/blog/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'title' => 'Título', 11 | 'comments' => 'No. de Comentários', 12 | 'created_at' => 'Criado em', 13 | 'actions' => 'Ações', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/blog/title.php: -------------------------------------------------------------------------------- 1 | 'Título', 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/blogcategory/form.php: -------------------------------------------------------------------------------- 1 | 'Nome da Categoria do Blogue', 9 | 'general' => 'Geral', 10 | ); 11 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/blogcategory/modal.php: -------------------------------------------------------------------------------- 1 | 'Tem certeza que quer apagar a Categoria do Blogue? Essa operação é irreversível.', 10 | 'cancel' => 'Cancelar', 11 | 'confirm' => 'Apagar', 12 | 'title' => 'Apagar Categoria de Blogue', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/blogcategory/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Nome', 11 | 'blogs' => 'No. de Artigos', 12 | 'actions' => 'Ações', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/blogcategory/title.php: -------------------------------------------------------------------------------- 1 | 'Título', 10 | 'create' => 'Criar nova Categoria de Blogue', 11 | 'edit' => 'Editar Categoria de Blogue', 12 | 'management' => 'Gerenciar Categoria de Blogue', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/button.php: -------------------------------------------------------------------------------- 1 | 'Editar', 9 | 'delete' => 'Apagar', 10 | 'restore' => 'Restaurar', 11 | 'publish' => 'Publicar', 12 | 'save' => 'Salvar', 13 | 'submit' => 'Enviar', 14 | 'cancel' => 'Cancelar', 15 | 'create' => 'Criar', 16 | 'back' => 'Voltar', 17 | 'signin' => 'Entrar', 18 | 'forgotpassword' => 'Esqueci minha senha', 19 | 'rememberme' => 'Lembre-me', 20 | 'signup' => 'Registrar', 21 | 'update' => 'Atualizar', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/general.php: -------------------------------------------------------------------------------- 1 | 'Não', 9 | 'noresults' => 'Sem Resultados', 10 | 'yes' => 'Sim', 11 | 'site_name' => 'Nome da página' 12 | ); 13 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/groups/form.php: -------------------------------------------------------------------------------- 1 | 'Nome do Gurpo', 9 | 'slug' => 'Slug', 10 | 'general' => 'Geral', 11 | 'permissions' => 'Permissões', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/groups/modal.php: -------------------------------------------------------------------------------- 1 | 'Apagar Grupo', 10 | 'body' => 'Tem certeza que quer apagar esse Grupo? Essa operação é irreversível.', 11 | 'cancel' => 'Cancelar', 12 | 'confirm' => 'Deletar', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/groups/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Nome', 11 | 'users' => 'No. de Usuários', 12 | 'created_at' => 'Criado em', 13 | 'actions' => 'Ações', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/groups/title.php: -------------------------------------------------------------------------------- 1 | 'Criar Novo Grupo', 10 | 'edit' => 'Editar Grupo', 11 | 'management' => 'Gerenciar Grupos', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/modal.php: -------------------------------------------------------------------------------- 1 | 'Apagare item', 10 | 'body' => 'Tem certeza que quer apagar esse item? Essa operação é irreversível.', 11 | 'cancel' => 'Cancelar', 12 | 'confirm' => 'Apagar', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/pagination.php: -------------------------------------------------------------------------------- 1 | '« Anterior', 17 | 'next' => 'Próximo »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/users/modal.php: -------------------------------------------------------------------------------- 1 | 'Tem certeza que quer apagar o usuário? Essa ação é irreversível.', 10 | 'cancel' => 'Cancelar', 11 | 'confirm' => 'Apagar', 12 | 'title' => 'Apagar Usuário', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/pt-BR/users/title.php: -------------------------------------------------------------------------------- 1 | 'Perfil de Usuário', 10 | 'first_name' => 'Primeiro Nome', 11 | 'last_name' => 'Último Nome', 12 | 'email' => 'E-mail', 13 | 'phone' => 'Telefone', 14 | 'address' => 'Endereço', 15 | 'city' => 'Cidade', 16 | 'status' => 'Estado', 17 | 'created_at' => 'Criado Em', 18 | 'select_image' => 'Selecione uma Imagem', 19 | 'gender' => 'Genero / Sexo', 20 | 'dob' => 'Data de Nascimento', 21 | 'country' => 'País', 22 | 'state' => 'Estado', 23 | 'postal' => 'CEP' 24 | 25 | ); 26 | -------------------------------------------------------------------------------- /resources/lang/ru/auth.php: -------------------------------------------------------------------------------- 1 | 'Нет такой учетной записи или неудачная попытка входа.', 17 | 'throttle' => 'Слишком много попыток входа. Пожалуйста, попробуйте через :seconds секунд.', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/ru/auth/form.php: -------------------------------------------------------------------------------- 1 | 'Пароль', 10 | 'email' => 'Email', 11 | 'newemail' => 'Новый Email', 12 | 'confirmemail' => 'Проверка Email', 13 | 'firstname' => 'Имя', 14 | 'lastname' => 'Фамилия', 15 | 'newpassword' => 'Новый пароль', 16 | 'website' => 'Сайт', 17 | 'country' => 'Страна', 18 | 'gravataremail' => 'Gravatar Email', 19 | 'changegravatar' => 'Смените свой аватар на Gravatar.com', 20 | 'oldpassword' => 'Текущий пароль', 21 | 'confirmpassword' => 'Подтвердить пароль', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/ru/blog/modal.php: -------------------------------------------------------------------------------- 1 | 'Вы точно уверены в том, что хотите удалить этот Блог? Эта операция позже не сможет быть отменена.', 10 | 'cancel' => 'Отменить', 11 | 'confirm' => 'Удалить', 12 | 'title' => 'Удалить Блог', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/ru/blog/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'title' => 'Заголовок', 11 | 'comments' => 'No. комментария', 12 | 'created_at' => 'Создано', 13 | 'actions' => 'Действия', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/ru/blog/title.php: -------------------------------------------------------------------------------- 1 | 'Заголовок', 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /resources/lang/ru/blogcategory/form.php: -------------------------------------------------------------------------------- 1 | 'Наименования категории Блога', 9 | 'general' => 'Основная', 10 | ); 11 | -------------------------------------------------------------------------------- /resources/lang/ru/blogcategory/modal.php: -------------------------------------------------------------------------------- 1 | 'Вы точно уверены в том, что хотите удалить эту Категорию Блога? Эта операция позже не сможет быть отменена.', 10 | 'cancel' => 'Отменить', 11 | 'confirm' => 'Удалить', 12 | 'title' => 'Удалить Категорию Блога', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/ru/blogcategory/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Наименование', 11 | 'blogs' => 'No. Блогов', 12 | 'created_at' => 'Создано', 13 | 'actions' => 'Действия', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/ru/blogcategory/title.php: -------------------------------------------------------------------------------- 1 | 'Заголовок', 10 | 'create' => 'Создать новую категорию блога', 11 | 'edit' => 'Редактировать категорию блога', 12 | 'management' => 'Управление Категориями Блогов', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/ru/button.php: -------------------------------------------------------------------------------- 1 | 'Редактировать', 9 | 'delete' => 'Удалить', 10 | 'restore' => 'Восстановить', 11 | 'publish' => 'Опубликовать', 12 | 'save' => 'Сохранить', 13 | 'submit' => 'Подтвердить', 14 | 'cancel' => 'Отменить', 15 | 'create' => 'Создать', 16 | 'back' => 'Назад', 17 | 'signin' => 'Войти', 18 | 'forgotpassword' => 'Я забыл свой пароль', 19 | 'rememberme' => 'Запомить меня', 20 | 'signup' => 'Зарегистрироваться', 21 | 'update' => 'Обновить', 22 | 23 | ); 24 | -------------------------------------------------------------------------------- /resources/lang/ru/general.php: -------------------------------------------------------------------------------- 1 | 'Нет', 9 | 'noresults' => 'Нет резутатов', 10 | 'yes' => 'Да', 11 | 12 | ); 13 | -------------------------------------------------------------------------------- /resources/lang/ru/groups/form.php: -------------------------------------------------------------------------------- 1 | 'Наименование', 9 | 'slug' => 'Slug', 10 | 'general' => 'Основные', 11 | 'permissions' => 'Права доступа', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/ru/groups/modal.php: -------------------------------------------------------------------------------- 1 | 'Удаление Группы', 10 | 'body' => 'Вы точно уверены в том, что хотите удалить эту Группу пользователей? Эта операция позже не сможет быть отменена.', 11 | 'cancel' => 'Отменить', 12 | 'confirm' => 'Удалить', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/ru/groups/table.php: -------------------------------------------------------------------------------- 1 | 'Id', 10 | 'name' => 'Наименование ', 11 | 'users' => 'No. пользователя', 12 | 'created_at' => 'Создано', 13 | 'actions' => 'Действия', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/ru/groups/title.php: -------------------------------------------------------------------------------- 1 | 'Создать новую группу', 10 | 'edit' => 'Редактирование группы', 11 | 'management' => 'Управление Группами пользователей', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/ru/modal.php: -------------------------------------------------------------------------------- 1 | 'Удаление позиции', 10 | 'body' => 'Вы точно уверены в том, что хотите удалить этоту позицию? Эта операция позже не сможет быть отменена.', 11 | 'cancel' => 'Отменить', 12 | 'confirm' => 'Удалить', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/ru/pagination.php: -------------------------------------------------------------------------------- 1 | '« Назад', 17 | 'next' => 'Вперед »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/ru/users/modal.php: -------------------------------------------------------------------------------- 1 | 'Вы точно уверены в том, что хотите удалить эту Учетную Запись Пользовтеля? Эта операция позже не сможет быть отменена.', 10 | 'cancel' => 'Отменить', 11 | 'confirm' => 'Удалить', 12 | 'title' => 'Удалить Пользователя', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/ru/users/title.php: -------------------------------------------------------------------------------- 1 | 'Учетная запись пользователя', 10 | 'first_name' => 'Имя', 11 | 'last_name' => 'Фамилия', 12 | 'email' => 'E-mail', 13 | 'phone' => 'Номер телефона', 14 | 'address' => 'Адрес', 15 | 'city' => 'Город', 16 | 'status' => 'Статус', 17 | 'created_at' => 'Создано', 18 | 'select_image' => 'Выберете изображение', 19 | 'gender' => 'Пол', 20 | 'dob' => 'Дата рождения', 21 | 'country' => 'Страна', 22 | 'state' => 'Область', 23 | 'postal' => 'Почтовый индекс' 24 | 25 | ); 26 | -------------------------------------------------------------------------------- /resources/lang/sr/auth/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/auth/form.php -------------------------------------------------------------------------------- /resources/lang/sr/auth/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/auth/message.php -------------------------------------------------------------------------------- /resources/lang/sr/blog/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/blog/message.php -------------------------------------------------------------------------------- /resources/lang/sr/blog/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/blog/modal.php -------------------------------------------------------------------------------- /resources/lang/sr/blog/table.php: -------------------------------------------------------------------------------- 1 | 'Redni br.', 10 | 'title' => 'Naslov', 11 | 'comments' => 'Br. komentara', 12 | 'created_at' => 'Kreiran', 13 | 'actions' => 'Akcije', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/sr/blog/title.php: -------------------------------------------------------------------------------- 1 | 'Naslov', 10 | 11 | ); 12 | -------------------------------------------------------------------------------- /resources/lang/sr/blogcategory/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/blogcategory/form.php -------------------------------------------------------------------------------- /resources/lang/sr/blogcategory/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/blogcategory/message.php -------------------------------------------------------------------------------- /resources/lang/sr/blogcategory/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/blogcategory/modal.php -------------------------------------------------------------------------------- /resources/lang/sr/blogcategory/table.php: -------------------------------------------------------------------------------- 1 | 'Redni br.', 10 | 'name' => 'Naziv', 11 | 'blogs' => 'Br. blogova', 12 | 'created_at' => 'Kreirano', 13 | 'actions' => 'Akcije', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/sr/blogcategory/title.php: -------------------------------------------------------------------------------- 1 | 'Naziv', 10 | 'create' => 'Kreiranje nove kategorije blogova', 11 | 'edit' => 'Izmjena kategorije bloga', 12 | 'management' => 'Upravljanje kategorijama bloga', 13 | 14 | ); 15 | -------------------------------------------------------------------------------- /resources/lang/sr/button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/button.php -------------------------------------------------------------------------------- /resources/lang/sr/general.php: -------------------------------------------------------------------------------- 1 | 'Ne', 9 | 'noresults' => 'Nema rezultata', 10 | 'yes' => 'Da', 11 | 12 | ); 13 | -------------------------------------------------------------------------------- /resources/lang/sr/groups/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/groups/form.php -------------------------------------------------------------------------------- /resources/lang/sr/groups/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/groups/message.php -------------------------------------------------------------------------------- /resources/lang/sr/groups/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/groups/modal.php -------------------------------------------------------------------------------- /resources/lang/sr/groups/table.php: -------------------------------------------------------------------------------- 1 | 'Redni br.', 10 | 'name' => 'Naziv', 11 | 'users' => 'Br. korisnika', 12 | 'created_at' => 'Kreirano', 13 | 'actions' => 'Akcije', 14 | 15 | ); 16 | -------------------------------------------------------------------------------- /resources/lang/sr/groups/title.php: -------------------------------------------------------------------------------- 1 | 'Kreirane nove grupe', 10 | 'edit' => 'Izmjene grupe', 11 | 'management' => 'Upravljanje grupama', 12 | 13 | ); 14 | -------------------------------------------------------------------------------- /resources/lang/sr/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/message.php -------------------------------------------------------------------------------- /resources/lang/sr/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/modal.php -------------------------------------------------------------------------------- /resources/lang/sr/pagination.php: -------------------------------------------------------------------------------- 1 | '« Nazad', 16 | 17 | 'next' => 'Naprijed »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/lang/sr/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/passwords.php -------------------------------------------------------------------------------- /resources/lang/sr/reminders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/reminders.php -------------------------------------------------------------------------------- /resources/lang/sr/users/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/users/message.php -------------------------------------------------------------------------------- /resources/lang/sr/users/modal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/users/modal.php -------------------------------------------------------------------------------- /resources/lang/sr/users/title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreambold/Multi-Vendor-System-Laravel/b1b738f2889d0f884c006b650215c2650e4e9579/resources/lang/sr/users/title.php -------------------------------------------------------------------------------- /resources/views/admin/image_valid.php: -------------------------------------------------------------------------------- 1 | 2 | check($_POST['captcha_code']) == false) { 6 | // the code was incorrect 7 | // you should handle the error so that the form processor doesn't continue 8 | // or you can use the following code if there is no validation or you do not know how 9 | echo "The security code entered was incorrect.

    "; 10 | echo "Please go back and try again."; 11 | exit; 12 | } 13 | else{ 14 | echo "The security code entered was correct. back

    "; 15 | exit; 16 | } 17 | ?> -------------------------------------------------------------------------------- /resources/views/admin/layouts/modal_confirmation.blade.php: -------------------------------------------------------------------------------- 1 | 5 | 12 | 18 | -------------------------------------------------------------------------------- /resources/views/admin/product/category_list.blade.php: -------------------------------------------------------------------------------- 1 | 2 | @if($search == '') 3 |
  • All
  • 4 | @endif 5 | @if(isset($categoryList)) 6 | @foreach($categoryList as $item) 7 |
  • {{$item['path']}}
  • 8 | @endforeach 9 | 16 | @endif 17 | 18 | -------------------------------------------------------------------------------- /resources/views/admin/productcategory/brand_list.blade.php: -------------------------------------------------------------------------------- 1 | @foreach($list as $item) 2 |
  • {{$item['title']}}
  • 3 | @endforeach 4 | 5 | -------------------------------------------------------------------------------- /resources/views/admin/productcategoryattr/category_list.blade.php: -------------------------------------------------------------------------------- 1 | @if(isset($categoryList)) 2 | @foreach($categoryList as $item) 3 |
  • {{$item['path']}}
  • 4 | @endforeach 5 | 12 | @endif 13 | 14 | -------------------------------------------------------------------------------- /resources/views/emails/auth/reminder.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

    Password Reset

    8 | 9 |
    10 | To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
    11 | This link will expire in {{ Config::get('auth.reminder.expire', 60) }} minutes. 12 |
    13 | 14 | 15 | -------------------------------------------------------------------------------- /resources/views/emails/contact.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | @component('mail::layout') 4 | {{-- Header --}} 5 | @slot('header') 6 | @component('mail::header', ['url' => config('app.url')]) 7 | Josh Admin 8 | @endcomponent 9 | @endslot 10 | 11 | {{-- Body --}} 12 | # Hello 13 | 14 | We have received a new contact mail.
    15 | **Name :** {{ $data->contact_name }}
    16 | **Email :** {{ $data->contact_email }}
    17 | **Message :** {{ $data->contact_msg }} 18 | 19 | 20 | Thanks, 21 | 22 | {{-- Footer --}} 23 | @slot('footer') 24 | @component('mail::footer') 25 | © 2017 All Copy right received 26 | @endcomponent 27 | @endslot 28 | @endcomponent 29 | -------------------------------------------------------------------------------- /resources/views/emails/forgot-password.blade.php: -------------------------------------------------------------------------------- 1 | @component('mail::layout') 2 | {{-- Header --}} 3 | @slot('header') 4 | @component('mail::header', ['url' => config('app.url')]) 5 | Josh Admin 6 | @endcomponent 7 | @endslot 8 | 9 | {{-- Body --}} 10 | # Hello {!! $user->user_name !!},
    11 | 12 | Please click on the following link to updated your password 13 | @component('mail::button', ['url' => $user->forgotPasswordUrl ]) 14 | Reset Password 15 | @endcomponent 16 | 17 | 18 | Thanks, 19 | 20 | {{-- Footer --}} 21 | @slot('footer') 22 | @component('mail::footer') 23 | © 2017 All Copy right received 24 | @endcomponent 25 | @endslot 26 | @endcomponent -------------------------------------------------------------------------------- /resources/views/emails/layouts/default.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | @yield('content') 9 | 10 | 11 | -------------------------------------------------------------------------------- /resources/views/front/checkout/ship_info.blade.php: -------------------------------------------------------------------------------- 1 | @if(isset($shipInfo['id'])) 2 | 8 | @endif -------------------------------------------------------------------------------- /resources/views/front/front_buyer/discount_dlg.blade.php: -------------------------------------------------------------------------------- 1 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /resources/views/front/front_seller/top_menu.blade.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/views/vendor/datatables/script.blade.php: -------------------------------------------------------------------------------- 1 | (function(window,$){window.LaravelDataTables=window.LaravelDataTables||{};window.LaravelDataTables["%1$s"]=$("#%1$s").DataTable(%2$s);})(window,jQuery); 2 | -------------------------------------------------------------------------------- /resources/views/vendor/flash/modal.blade.php: -------------------------------------------------------------------------------- 1 | 20 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/footer.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ $slot }} 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 |
    4 | 5 | 6 | 9 | 10 |
    7 | {{ Illuminate\Mail\Markdown::parse($slot) }} 8 |
    11 |
    14 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/promotion.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 |
    4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 |
    8 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/promotion/button.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 12 | 13 |
    4 | 5 | 6 | 9 | 10 |
    7 | {{ $slot }} 8 |
    11 |
    14 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 |
    4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 |
    8 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/html/table.blade.php: -------------------------------------------------------------------------------- 1 |
    2 | {{ Illuminate\Mail\Markdown::parse($slot) }} 3 |
    4 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/button.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/header.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/layout.blade.php: -------------------------------------------------------------------------------- 1 | {!! strip_tags($header) !!} 2 | 3 | {!! strip_tags($slot) !!} 4 | @if (isset($subcopy)) 5 | 6 | {!! strip_tags($subcopy) !!} 7 | @endif 8 | 9 | {!! strip_tags($footer) !!} 10 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/promotion/button.blade.php: -------------------------------------------------------------------------------- 1 | [{{ $slot }}]({{ $url }}) 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/mail/markdown/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /resources/views/vendor/notifications/email-plain.blade.php: -------------------------------------------------------------------------------- 1 | hasPages()) 2 | 17 | @endif 18 | -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- 1 | get('/user', function (Request $request) { 17 | return $request->user(); 18 | }); 19 | -------------------------------------------------------------------------------- /routes/api_builder.php: -------------------------------------------------------------------------------- 1 | id === (int) $id; 16 | }); 17 | -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 | comment(Inspiring::quote()); 18 | })->describe('Display an inspiring quote'); 19 | -------------------------------------------------------------------------------- /routes/web_builder.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- 1 | make(Kernel::class)->bootstrap(); 19 | 20 | return $app; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- 1 | get('/'); 18 | 19 | $response->assertStatus(200); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 18 | } 19 | } 20 | --------------------------------------------------------------------------------