├── tests ├── Unit │ ├── .gitignore │ ├── Roles │ │ └── RoleUnitTest.php │ ├── Employees │ │ └── EmployeeUnitTest.php │ ├── Checkout │ │ └── CheckoutUnitTest.php │ ├── AttributeValues │ │ └── AttributeValueUnitTest.php │ └── Cities │ │ └── CityUnitTest.php ├── CreatesApplication.php └── Feature │ ├── Front │ ├── Checkout │ │ └── CheckoutFeatureTest.php │ ├── Categories │ │ └── FrontCategoryFeatureTest.php │ └── Home │ │ └── HomeFeatureTest.php │ └── Admin │ └── Dashboard │ └── DashboardFeatureTest.php ├── database ├── .gitignore ├── seeds │ ├── OrderTableSeeder.php │ ├── ProductsTableSeeder.php │ ├── CustomersTableSeeder.php │ ├── CourierTableSeeder.php │ ├── CategoriesTableSeeder.php │ ├── CustomerAddressesTableSeeder.php │ ├── EmployeesTableSeeder.php │ ├── OrderStatusTableSeeder.php │ ├── DatabaseSeeder.php │ └── CategoryProductsTableSeeder.php ├── factories │ ├── AttributeModelFactory.php │ ├── ProductAttributeModelFactory.php │ ├── RoleModelFactory.php │ ├── OrderStatusModelFactory.php │ ├── PermissionModelFactory.php │ ├── CityModelFactory.php │ ├── CourierModelFactory.php │ ├── ProvinceModelFactory.php │ ├── CustomerModelFactory.php │ ├── EmployeeModelFactory.php │ ├── CountryModelFactory.php │ ├── AddressModelFactory.php │ ├── ProductModelFactory.php │ ├── OrderModelFactory.php │ └── CategoryModelFactory.php └── migrations │ ├── 2018_03_10_110530_create_attributes_table.php │ ├── 2018_02_19_151228_create_cost_column.php │ ├── 2017_06_17_011245_create_shoppingcart_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2017_06_12_225546_create_order_status_table.php │ ├── 2016_05_26_051502_create_cities_table.php │ ├── 2018_01_18_163143_create_product_images_table.php │ ├── 2016_05_26_035202_create_provinces_table.php │ ├── 2018_03_10_150920_create_attribute_values_table.php │ ├── 2017_06_13_005248_create_payment_methods.php │ ├── 2017_06_13_044714_create_couriers_table.php │ ├── 2016_05_26_020731_create_country_table.php │ ├── 2018_03_11_014046_create_product_attributes_table.php │ ├── 2014_10_12_000000_create_customers_table.php │ ├── 2014_10_12_000010_create_employees_table.php │ ├── 2017_06_11_033553_create_category_product_table.php │ ├── 2017_06_13_091740_create_order_products_table.php │ ├── 2017_06_11_015526_create_categories_table.php │ ├── 2018_03_11_090249_create_attribute_value_product_attribute_table.php │ ├── 2017_06_10_225235_create_products_table.php │ └── 2017_06_11_073305_create_address_table.php ├── resources ├── views │ ├── invoices │ │ └── .gitkeep │ ├── front │ │ ├── shared │ │ │ └── sidebar.blade.php │ │ ├── checkout-success.blade.php │ │ ├── checkout-cancel.blade.php │ │ ├── categories │ │ │ └── sidebar-category.blade.php │ │ └── products │ │ │ ├── product-search.blade.php │ │ │ └── product.blade.php │ ├── admin │ │ ├── shared │ │ │ ├── status-select.blade.php │ │ │ ├── category-children.blade.php │ │ │ ├── cities.blade.php │ │ │ ├── categories.blade.php │ │ │ └── provinces.blade.php │ │ ├── products │ │ │ └── list.blade.php │ │ ├── dashboard.blade.php │ │ ├── employees │ │ │ └── show.blade.php │ │ ├── provinces │ │ │ └── edit.blade.php │ │ ├── cities │ │ │ └── edit.blade.php │ │ └── attributes │ │ │ └── create.blade.php │ ├── emails │ │ └── inquiry │ │ │ └── send.blade.php │ └── layouts │ │ ├── admin │ │ └── footer.blade.php │ │ ├── front │ │ ├── category-sidebar-sub.blade.php │ │ ├── category-nav.blade.php │ │ ├── category-sub.blade.php │ │ ├── home-slider.blade.php │ │ └── footer.blade.php │ │ ├── status.blade.php │ │ ├── search.blade.php │ │ ├── errors-and-messages.blade.php │ │ └── errors │ │ ├── 403.blade.php │ │ └── 503.blade.php ├── assets │ ├── images │ │ └── banner.jpg │ ├── admin-lte │ │ └── img │ │ │ ├── icons.png │ │ │ ├── avatar.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar5.png │ │ │ ├── photo1.png │ │ │ ├── photo2.png │ │ │ ├── photo3.jpg │ │ │ ├── photo4.jpg │ │ │ ├── avatar04.png │ │ │ ├── boxed-bg.jpg │ │ │ ├── boxed-bg.png │ │ │ ├── credit │ │ │ ├── visa.png │ │ │ ├── cirrus.png │ │ │ ├── mestro.png │ │ │ ├── paypal.png │ │ │ ├── paypal2.png │ │ │ ├── mastercard.png │ │ │ └── american-express.png │ │ │ ├── default-50x50.gif │ │ │ ├── user1-128x128.jpg │ │ │ ├── user2-160x160.jpg │ │ │ ├── user3-128x128.jpg │ │ │ ├── user4-128x128.jpg │ │ │ ├── user5-128x128.jpg │ │ │ ├── user6-128x128.jpg │ │ │ ├── user7-128x128.jpg │ │ │ └── user8-128x128.jpg │ ├── sass │ │ ├── app.scss │ │ └── _variables.scss │ ├── css │ │ └── admin.css │ └── js │ │ ├── custom.js │ │ └── scripts.js └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ └── passwords.php ├── _config.yml ├── bootstrap ├── cache │ └── .gitignore └── autoload.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── public ├── robots.txt ├── favicon.ico ├── favicons │ ├── favicon.ico │ ├── apple-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ ├── ms-icon-70x70.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-precomposed.png │ ├── browserconfig.xml │ └── manifest.json ├── mix-manifest.json └── .htaccess ├── cs-fixer.phar ├── config ├── payees.php ├── stripe.php ├── paypal.php ├── hashing.php ├── view.php └── services.php ├── PULL_REQUEST_TEMPLATE.md ├── .gitattributes ├── app ├── Shop │ ├── Teams │ │ └── Team.php │ ├── Carts │ │ ├── Requests │ │ │ ├── CheckoutInterface.php │ │ │ ├── AddToCartRequest.php │ │ │ ├── StripeExecutionRequest.php │ │ │ ├── CartCheckoutRequest.php │ │ │ └── PayPalCheckoutExecutionRequest.php │ │ ├── Exceptions │ │ │ └── ProductInCartNotFoundException.php │ │ └── Repositories │ │ │ └── Interfaces │ │ │ └── CartRepositoryInterface.php │ ├── Roles │ │ ├── Exceptions │ │ │ └── CreateRoleErrorException.php │ │ ├── Role.php │ │ └── Repositories │ │ │ ├── RoleRepositoryInterface.php │ │ │ └── RoleRepository.php │ ├── Attributes │ │ ├── Exceptions │ │ │ ├── AttributeNotFoundException.php │ │ │ ├── CreateAttributeErrorException.php │ │ │ └── UpdateAttributeErrorException.php │ │ ├── Requests │ │ │ ├── UpdateAttributeRequest.php │ │ │ └── CreateAttributeRequest.php │ │ ├── Attribute.php │ │ └── Repositories │ │ │ └── AttributeRepositoryInterface.php │ ├── Permissions │ │ └── Permission.php │ ├── Customers │ │ ├── Exceptions │ │ │ ├── CreateCustomerInvalidArgumentException.php │ │ │ ├── CustomerPaymentChargingErrorException.php │ │ │ ├── UpdateCutomerInvalidArgumentException.php │ │ │ └── CustomerNotFoundException.php │ │ ├── Transformations │ │ │ └── CustomerTransformable.php │ │ ├── Requests │ │ │ ├── CreateCustomerRequest.php │ │ │ ├── RegisterCustomerRequest.php │ │ │ └── UpdateCustomerRequest.php │ │ ├── Repositories │ │ │ └── Interfaces │ │ │ │ └── CustomerRepositoryInterface.php │ │ └── Customer.php │ ├── PaymentMethods │ │ ├── Stripe │ │ │ └── Exceptions │ │ │ │ └── StripeChargingErrorException.php │ │ ├── Paypal │ │ │ ├── Exceptions │ │ │ │ └── PaypalRequestError.php │ │ │ └── Repositories │ │ │ │ └── PayPalExpressCheckoutRepositoryInterface.php │ │ └── Payment.php │ ├── ProductAttributes │ │ ├── Exceptions │ │ │ └── ProductAttributeNotFoundException.php │ │ ├── Repositories │ │ │ ├── ProductAttributeRepositoryInterface.php │ │ │ └── ProductAttributeRepository.php │ │ └── ProductAttribute.php │ ├── Orders │ │ ├── Exceptions │ │ │ ├── OrderInvalidArgumentException.php │ │ │ └── OrderNotFoundException.php │ │ ├── Repositories │ │ │ └── Interfaces │ │ │ │ └── OrderRepositoryInterface.php │ │ └── Transformers │ │ │ └── OrderTransformable.php │ ├── Addresses │ │ ├── Exceptions │ │ │ ├── AddressInvalidArgumentException.php │ │ │ └── AddressNotFoundException.php │ │ ├── Requests │ │ │ ├── CreateAddressRequest.php │ │ │ └── UpdateAddressRequest.php │ │ └── Repositories │ │ │ └── Interfaces │ │ │ └── AddressRepositoryInterface.php │ ├── Countries │ │ ├── Exceptions │ │ │ ├── CountryInvalidArgumentException.php │ │ │ └── CountryNotFoundException.php │ │ ├── Repositories │ │ │ └── Interfaces │ │ │ │ └── CountryRepositoryInterface.php │ │ └── Country.php │ ├── Couriers │ │ ├── Exceptions │ │ │ ├── CourierInvalidArgumentException.php │ │ │ └── CourierNotFoundException.php │ │ ├── Requests │ │ │ ├── CreateCourierRequest.php │ │ │ └── UpdateCourierRequest.php │ │ ├── Courier.php │ │ └── Repositories │ │ │ └── Interfaces │ │ │ └── CourierRepositoryInterface.php │ ├── Products │ │ ├── Exceptions │ │ │ ├── ProductInvalidArgumentException.php │ │ │ └── ProductNotFoundException.php │ │ ├── Requests │ │ │ ├── UpdateProductRequest.php │ │ │ └── CreateProductRequest.php │ │ └── Transformations │ │ │ └── ProductTransformable.php │ ├── Categories │ │ ├── Exceptions │ │ │ ├── CategoryInvalidArgumentException.php │ │ │ └── CategoryNotFoundException.php │ │ ├── Category.php │ │ └── Repositories │ │ │ └── Interfaces │ │ │ └── CategoryRepositoryInterface.php │ ├── OrderProducts │ │ ├── Exceptions │ │ │ └── OrderDetailInvalidArgumentException.php │ │ ├── OrderProduct.php │ │ └── Repositories │ │ │ └── Interfaces │ │ │ └── OrderProductRepositoryInterface.php │ ├── OrderStatuses │ │ ├── Exceptions │ │ │ ├── OrderStatusInvalidArgumentException.php │ │ │ └── OrderStatusNotFoundException.php │ │ ├── Requests │ │ │ ├── CreateOrderStatusRequest.php │ │ │ └── UpdateOrderStatusRequest.php │ │ ├── OrderStatus.php │ │ └── Repositories │ │ │ └── Interfaces │ │ │ └── OrderStatusRepositoryInterface.php │ ├── Base │ │ ├── BaseFormRequest.php │ │ └── Interfaces │ │ │ └── BaseRepositoryInterface.php │ ├── Cities │ │ ├── Exceptions │ │ │ └── CityNotFoundException.php │ │ ├── Repositories │ │ │ ├── Interfaces │ │ │ │ └── CityRepositoryInterface.php │ │ │ └── CityRepository.php │ │ ├── Requests │ │ │ └── UpdateCityRequest.php │ │ └── City.php │ ├── Provinces │ │ ├── Exceptions │ │ │ └── ProvinceNotFoundException.php │ │ ├── Repositories │ │ │ └── Interfaces │ │ │ │ └── ProvinceRepositoryInterface.php │ │ └── Province.php │ ├── Employees │ │ ├── Exceptions │ │ │ └── EmployeeNotFoundException.php │ │ ├── Requests │ │ │ ├── LoginRequest.php │ │ │ ├── CreateEmployeeRequest.php │ │ │ └── UpdateEmployeeRequest.php │ │ ├── Repositories │ │ │ └── Interfaces │ │ │ │ └── EmployeeRepositoryInterface.php │ │ └── Employee.php │ ├── AttributeValues │ │ ├── Requests │ │ │ └── CreateAttributeValueRequest.php │ │ ├── Repositories │ │ │ └── AttributeValueRepositoryInterface.php │ │ └── AttributeValue.php │ ├── ProductImages │ │ ├── ProductImage.php │ │ └── ProductImageRepository.php │ ├── Tools │ │ └── UploadableTrait.php │ └── Checkout │ │ └── CheckoutRepository.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── DashboardController.php │ │ │ ├── Categories │ │ │ │ └── Requests │ │ │ │ │ ├── CreateCategoryRequest.php │ │ │ │ │ └── UpdateCategoryRequest.php │ │ │ └── Countries │ │ │ │ └── Requests │ │ │ │ └── UpdateCountryRequest.php │ │ ├── Controller.php │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ └── ResetPasswordController.php │ │ └── Front │ │ │ ├── CategoryController.php │ │ │ └── HomeController.php │ └── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── RedirectIfAuthenticated.php │ │ └── RedirectIfNotAdmin.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ └── EventServiceProvider.php ├── Listeners │ └── OrderCreateEventListener.php ├── Console │ └── Kernel.php ├── Events │ └── OrderCreateEvent.php └── Mail │ ├── SendOrderToCustomerMailable.php │ └── sendEmailNotificationToAdminMailable.php ├── .travis.yml ├── CONTRIBUTING.md ├── changelog.md ├── .gitignore ├── routes ├── channels.php ├── console.php └── api.php ├── server.php ├── bitbucket-pipelines.yml ├── .env.testing ├── LICENSE.md ├── package.json ├── .env.example └── phpunit.xml /tests/Unit/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /resources/views/invoices/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-minimal -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /cs-fixer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/cs-fixer.phar -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicon.ico -------------------------------------------------------------------------------- /config/payees.php: -------------------------------------------------------------------------------- 1 | env('PAYMENT_METHODS', 'paypal') 5 | ]; -------------------------------------------------------------------------------- /public/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/favicon.ico -------------------------------------------------------------------------------- /public/favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon.png -------------------------------------------------------------------------------- /public/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/favicons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/favicons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /resources/assets/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/images/banner.jpg -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Title of the PR 2 | 3 | ## Description of the PR with the link on the issue trying to solve 4 | -------------------------------------------------------------------------------- /public/favicons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/favicons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/favicons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/favicons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/favicons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/android-icon-144x144.png -------------------------------------------------------------------------------- /public/favicons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/android-icon-192x192.png -------------------------------------------------------------------------------- /public/favicons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/android-icon-36x36.png -------------------------------------------------------------------------------- /public/favicons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/android-icon-48x48.png -------------------------------------------------------------------------------- /public/favicons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/android-icon-72x72.png -------------------------------------------------------------------------------- /public/favicons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/android-icon-96x96.png -------------------------------------------------------------------------------- /public/favicons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/favicons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/favicons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/favicons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/favicons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-180x180.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/icons.png -------------------------------------------------------------------------------- /public/favicons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/public/favicons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/avatar.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/avatar2.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/avatar3.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/avatar5.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/photo1.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/photo2.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/photo3.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/photo4.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/avatar04.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/boxed-bg.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/boxed-bg.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/credit/visa.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/credit/cirrus.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/credit/mestro.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/credit/paypal.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/credit/paypal2.png -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/default-50x50.gif -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/user1-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/user2-160x160.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/user3-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/user4-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/user5-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/user6-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/user7-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/user8-128x128.jpg -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/credit/mastercard.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /resources/assets/admin-lte/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fg/laracom/master/resources/assets/admin-lte/img/credit/american-express.png -------------------------------------------------------------------------------- /app/Shop/Teams/Team.php: -------------------------------------------------------------------------------- 1 | 2 |
Your order is under way! Show more!
9 |You have cancelled your order. Maybe you want to checkout other items?
9 || Name | 5 |Actions | 6 |
| {{ $city['name'] }} | 12 |
13 |
14 | Edit
15 |
16 | |
17 |
Download this amazing e-commerce web app for FREE!
8 | DOWNLOAD 9 | Build on DigitalOcean 10 || Name | 6 |Status | 7 |Actions | 8 |
| {{ $province['name'] }} | 14 |@include('layouts.status', ['status' => $province['status']]) | 15 |16 | 20 | | 21 |
| ID | 14 |Name | 15 ||
| {{ $employee->id }} | 21 |{{ $employee->name }} | 22 |{{ $employee->email }} | 23 |
6 | {{ $message }} 7 | 8 |
9 |17 | {{ session()->get('message') }} 18 | 19 |
20 |26 | {{ session()->get('error') }} 27 | 28 |
29 |{{$error}}
52 |Ooops, server error occurred.
Please check again later. 52 |