├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app ├── Console │ └── Kernel.php ├── Enums │ ├── OrderStatusEnum.php │ └── ProductTypeEnum.php ├── Exceptions │ └── Handler.php ├── Filament │ ├── Resources │ │ ├── BrandResource.php │ │ ├── BrandResource │ │ │ ├── Pages │ │ │ │ ├── CreateBrand.php │ │ │ │ ├── EditBrand.php │ │ │ │ └── ListBrands.php │ │ │ └── RelationManagers │ │ │ │ └── ProductsRelationManager.php │ │ ├── CategoryResource.php │ │ ├── CategoryResource │ │ │ ├── Pages │ │ │ │ ├── CreateCategory.php │ │ │ │ ├── EditCategory.php │ │ │ │ └── ListCategories.php │ │ │ └── RelationManagers │ │ │ │ └── ProductsRelationManager.php │ │ ├── CustomerResource.php │ │ ├── CustomerResource │ │ │ └── Pages │ │ │ │ ├── CreateCustomer.php │ │ │ │ ├── EditCustomer.php │ │ │ │ └── ListCustomers.php │ │ ├── OrderResource.php │ │ ├── OrderResource │ │ │ └── Pages │ │ │ │ ├── CreateOrder.php │ │ │ │ ├── EditOrder.php │ │ │ │ └── ListOrders.php │ │ ├── ProductResource.php │ │ └── ProductResource │ │ │ └── Pages │ │ │ ├── CreateProduct.php │ │ │ ├── EditProduct.php │ │ │ └── ListProducts.php │ └── Widgets │ │ ├── LatestOrders.php │ │ ├── OrdersChart.php │ │ ├── ProductsChart.php │ │ └── StatsOverview.php ├── Http │ ├── Controllers │ │ └── Controller.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── ValidateSignature.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Brand.php │ ├── Category.php │ ├── Customer.php │ ├── Order.php │ ├── OrderItem.php │ ├── Product.php │ └── User.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── Filament │ └── AdminPanelProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filament.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2023_08_17_132209_create_categories_table.php │ ├── 2023_08_17_132215_create_brands_table.php │ ├── 2023_08_17_132244_create_products_table.php │ ├── 2023_08_17_132249_create_customers_table.php │ ├── 2023_08_17_132319_create_orders_table.php │ ├── 2023_08_17_135532_create_order_items_table.php │ ├── 2023_08_17_135924_create_category_product_table.php │ └── 2023_09_04_131928_delete_total_price_from_orders_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── filament │ │ ├── filament │ │ │ └── app.css │ │ ├── forms │ │ │ └── forms.css │ │ └── support │ │ │ └── support.css │ └── pxlrbt │ │ └── filament-spotlight │ │ └── spotlight-css.css ├── favicon.ico ├── images │ ├── favicon.png │ └── hostinger-logo.png ├── index.php ├── js │ ├── filament │ │ ├── filament │ │ │ ├── app.js │ │ │ └── echo.js │ │ ├── forms │ │ │ ├── components │ │ │ │ ├── color-picker.js │ │ │ │ ├── date-time-picker.js │ │ │ │ ├── file-upload.js │ │ │ │ ├── key-value.js │ │ │ │ ├── markdown-editor.js │ │ │ │ ├── rich-editor.js │ │ │ │ ├── select.js │ │ │ │ ├── tags-input.js │ │ │ │ └── textarea.js │ │ │ └── forms.js │ │ ├── notifications │ │ │ └── notifications.js │ │ ├── support │ │ │ ├── async-alpine.js │ │ │ └── support.js │ │ ├── tables │ │ │ └── tables.js │ │ └── widgets │ │ │ └── components │ │ │ ├── chart.js │ │ │ └── stats-overview │ │ │ └── stat │ │ │ └── chart.js │ └── pxlrbt │ │ └── filament-spotlight │ │ └── spotlight-js.js └── robots.txt ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js └── views │ ├── vendor │ └── filament-panels │ │ └── components │ │ └── logo.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── vite.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Enums/OrderStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Enums/OrderStatusEnum.php -------------------------------------------------------------------------------- /app/Enums/ProductTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Enums/ProductTypeEnum.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Filament/Resources/BrandResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/BrandResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/BrandResource/Pages/CreateBrand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/BrandResource/Pages/CreateBrand.php -------------------------------------------------------------------------------- /app/Filament/Resources/BrandResource/Pages/EditBrand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/BrandResource/Pages/EditBrand.php -------------------------------------------------------------------------------- /app/Filament/Resources/BrandResource/Pages/ListBrands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/BrandResource/Pages/ListBrands.php -------------------------------------------------------------------------------- /app/Filament/Resources/BrandResource/RelationManagers/ProductsRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/BrandResource/RelationManagers/ProductsRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/CategoryResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/CreateCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/CategoryResource/Pages/CreateCategory.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/EditCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/CategoryResource/Pages/EditCategory.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/Pages/ListCategories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/CategoryResource/Pages/ListCategories.php -------------------------------------------------------------------------------- /app/Filament/Resources/CategoryResource/RelationManagers/ProductsRelationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/CategoryResource/RelationManagers/ProductsRelationManager.php -------------------------------------------------------------------------------- /app/Filament/Resources/CustomerResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/CustomerResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/CustomerResource/Pages/CreateCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/CustomerResource/Pages/CreateCustomer.php -------------------------------------------------------------------------------- /app/Filament/Resources/CustomerResource/Pages/EditCustomer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/CustomerResource/Pages/EditCustomer.php -------------------------------------------------------------------------------- /app/Filament/Resources/CustomerResource/Pages/ListCustomers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/CustomerResource/Pages/ListCustomers.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/OrderResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource/Pages/CreateOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/OrderResource/Pages/CreateOrder.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource/Pages/EditOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/OrderResource/Pages/EditOrder.php -------------------------------------------------------------------------------- /app/Filament/Resources/OrderResource/Pages/ListOrders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/OrderResource/Pages/ListOrders.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/ProductResource.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/Pages/CreateProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/ProductResource/Pages/CreateProduct.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/Pages/EditProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/ProductResource/Pages/EditProduct.php -------------------------------------------------------------------------------- /app/Filament/Resources/ProductResource/Pages/ListProducts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Resources/ProductResource/Pages/ListProducts.php -------------------------------------------------------------------------------- /app/Filament/Widgets/LatestOrders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Widgets/LatestOrders.php -------------------------------------------------------------------------------- /app/Filament/Widgets/OrdersChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Widgets/OrdersChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/ProductsChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Widgets/ProductsChart.php -------------------------------------------------------------------------------- /app/Filament/Widgets/StatsOverview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Filament/Widgets/StatsOverview.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Models/Brand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Models/Brand.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Models/Customer.php -------------------------------------------------------------------------------- /app/Models/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Models/Order.php -------------------------------------------------------------------------------- /app/Models/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Models/OrderItem.php -------------------------------------------------------------------------------- /app/Models/Product.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Models/Product.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/Filament/AdminPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Providers/Filament/AdminPanelProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filament.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/filament.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_17_132209_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2023_08_17_132209_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_17_132215_create_brands_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2023_08_17_132215_create_brands_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_17_132244_create_products_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2023_08_17_132244_create_products_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_17_132249_create_customers_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2023_08_17_132249_create_customers_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_17_132319_create_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2023_08_17_132319_create_orders_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_17_135532_create_order_items_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2023_08_17_135532_create_order_items_table.php -------------------------------------------------------------------------------- /database/migrations/2023_08_17_135924_create_category_product_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2023_08_17_135924_create_category_product_table.php -------------------------------------------------------------------------------- /database/migrations/2023_09_04_131928_delete_total_price_from_orders_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/migrations/2023_09_04_131928_delete_total_price_from_orders_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/filament/filament/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/css/filament/filament/app.css -------------------------------------------------------------------------------- /public/css/filament/forms/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/css/filament/forms/forms.css -------------------------------------------------------------------------------- /public/css/filament/support/support.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/css/filament/support/support.css -------------------------------------------------------------------------------- /public/css/pxlrbt/filament-spotlight/spotlight-css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/css/pxlrbt/filament-spotlight/spotlight-css.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/hostinger-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/images/hostinger-logo.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/filament/filament/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/filament/app.js -------------------------------------------------------------------------------- /public/js/filament/filament/echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/filament/echo.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/color-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/components/color-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/date-time-picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/components/date-time-picker.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/file-upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/components/file-upload.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/key-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/components/key-value.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/markdown-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/components/markdown-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/rich-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/components/rich-editor.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/components/select.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/tags-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/components/tags-input.js -------------------------------------------------------------------------------- /public/js/filament/forms/components/textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/components/textarea.js -------------------------------------------------------------------------------- /public/js/filament/forms/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/forms/forms.js -------------------------------------------------------------------------------- /public/js/filament/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/notifications/notifications.js -------------------------------------------------------------------------------- /public/js/filament/support/async-alpine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/support/async-alpine.js -------------------------------------------------------------------------------- /public/js/filament/support/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/support/support.js -------------------------------------------------------------------------------- /public/js/filament/tables/tables.js: -------------------------------------------------------------------------------- 1 | (()=>{})(); 2 | -------------------------------------------------------------------------------- /public/js/filament/widgets/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/widgets/components/chart.js -------------------------------------------------------------------------------- /public/js/filament/widgets/components/stats-overview/stat/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/filament/widgets/components/stats-overview/stat/chart.js -------------------------------------------------------------------------------- /public/js/pxlrbt/filament-spotlight/spotlight-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/public/js/pxlrbt/filament-spotlight/spotlight-js.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/views/vendor/filament-panels/components/logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/resources/views/vendor/filament-panels/components/logo.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/routes/web.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codewithdary/hostinger-filament/HEAD/vite.config.js --------------------------------------------------------------------------------