├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ ├── Commands │ │ └── SellLotsCommand.php │ └── Kernel.php ├── Events │ ├── BidEvent.php │ └── LotPurchasedEvent.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── LotsController.php │ │ │ └── UsersController.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── BidController.php │ │ ├── Controller.php │ │ ├── HomeController.php │ │ ├── LotController.php │ │ ├── LotImageController.php │ │ ├── ProfileController.php │ │ └── PurchaseController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── Admin │ │ │ └── Users │ │ │ │ └── UpdateRequest.php │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ ├── StoreBidRequest.php │ │ ├── StoreLotRequest.php │ │ └── UpdateProfileRequest.php │ └── Resources │ │ └── PurchaseResource.php ├── Jobs │ └── SellLot.php ├── Listeners │ ├── NotifyBuyer.php │ └── NotifySeller.php ├── Mail │ └── Purchases │ │ ├── LotBought.php │ │ └── LotSold.php ├── Models │ ├── Bid.php │ ├── Category.php │ ├── Lot.php │ ├── LotImage.php │ ├── Purchase.php │ └── User.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RouteServiceProvider.php │ └── TelescopeServiceProvider.php ├── Rules │ ├── BalanceMoreThenUserBids.php │ └── GreaterThanMaxBid.php ├── Services │ ├── Lot │ │ ├── DeleteService.php │ │ └── StoreService.php │ ├── MakeBidService.php │ ├── PurchaseService.php │ └── UpdateProfileService.php └── View │ └── Components │ ├── AppLayout.php │ └── GuestLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── laravolt │ └── avatar.php ├── logging.php ├── mail.php ├── permission.php ├── purifier.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php ├── telescope.php └── view.php ├── database ├── .gitignore ├── factories │ ├── CategoryFactory.php │ ├── LotFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_07_07_203717_add_user_username.php │ ├── 2021_07_12_194958_create_lots_table.php │ ├── 2021_07_14_220837_create_lot_images_table.php │ ├── 2021_07_18_192222_add_user_photo.php │ ├── 2021_07_21_133932_add_user_balance.php │ ├── 2021_07_21_181101_create_bids_table.php │ ├── 2021_07_25_193332_add_lot_end_time.php │ ├── 2021_07_25_203247_add_lot_status.php │ ├── 2021_07_29_140612_create_categories_table.php │ ├── 2021_07_29_140925_add_lot_category.php │ ├── 2021_07_31_203927_create_purchases_table.php │ └── 2021_08_24_193618_create_permission_tables.php └── seeders │ ├── CategorySeeder.php │ ├── DatabaseSeeder.php │ ├── LotSeeder.php │ ├── RoleSeeder.php │ └── UserSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt ├── vendor │ └── telescope │ │ ├── app-dark.css │ │ ├── app.css │ │ ├── app.js │ │ ├── favicon.ico │ │ └── mix-manifest.json └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ ├── ckeditor.js │ ├── components │ │ ├── BidCountdownTimer.vue │ │ ├── LotStatusBadge.vue │ │ ├── NewBid.vue │ │ ├── UniqueBids.vue │ │ └── UserPurchases.vue │ └── mixins │ │ └── websocket.js ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin │ ├── lots │ │ └── index.blade.php │ └── users │ │ ├── edit.blade.php │ │ └── index.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ └── verify-email.blade.php │ ├── components │ ├── application-logo.blade.php │ ├── auth-card.blade.php │ ├── auth-session-status.blade.php │ ├── auth-validation-errors.blade.php │ ├── avatar.blade.php │ ├── button.blade.php │ ├── default-lot-image.blade.php │ ├── dropdown-link.blade.php │ ├── dropdown.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── nav-link.blade.php │ └── responsive-nav-link.blade.php │ ├── dashboard.blade.php │ ├── emails │ └── purchases │ │ ├── lot-bought.blade.php │ │ └── lot-sold.blade.php │ ├── home.blade.php │ ├── layouts │ ├── app.blade.php │ ├── bid-form.blade.php │ ├── errors-message.blade.php │ ├── guest.blade.php │ ├── lot-images.blade.php │ ├── navigation.blade.php │ └── success-message.blade.php │ ├── lots │ ├── all.blade.php │ ├── create.blade.php │ ├── edit.blade.php │ └── one.blade.php │ └── profile │ └── edit.blade.php ├── routes ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── server.js ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tailwind.config.js ├── tests ├── CreatesApplication.php ├── Feature │ ├── AuthenticationTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── Lots │ │ ├── CreateTest.php │ │ ├── DeleteTest.php │ │ └── EditTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ └── RegistrationTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Commands/SellLotsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Console/Commands/SellLotsCommand.php -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/BidEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Events/BidEvent.php -------------------------------------------------------------------------------- /app/Events/LotPurchasedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Events/LotPurchasedEvent.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/LotsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Admin/LotsController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Admin/UsersController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/AuthenticatedSessionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Auth/AuthenticatedSessionController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ConfirmablePasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Auth/ConfirmablePasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationNotificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Auth/EmailVerificationNotificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/EmailVerificationPromptController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Auth/EmailVerificationPromptController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/NewPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Auth/NewPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/PasswordResetLinkController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Auth/PasswordResetLinkController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisteredUserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Auth/RegisteredUserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerifyEmailController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Auth/VerifyEmailController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BidController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/BidController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LotController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/LotController.php -------------------------------------------------------------------------------- /app/Http/Controllers/LotImageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/LotImageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PurchaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Controllers/PurchaseController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Admin/Users/UpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Requests/Admin/Users/UpdateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreBidRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Requests/StoreBidRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/StoreLotRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Requests/StoreLotRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UpdateProfileRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Requests/UpdateProfileRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/PurchaseResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Http/Resources/PurchaseResource.php -------------------------------------------------------------------------------- /app/Jobs/SellLot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Jobs/SellLot.php -------------------------------------------------------------------------------- /app/Listeners/NotifyBuyer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Listeners/NotifyBuyer.php -------------------------------------------------------------------------------- /app/Listeners/NotifySeller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Listeners/NotifySeller.php -------------------------------------------------------------------------------- /app/Mail/Purchases/LotBought.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Mail/Purchases/LotBought.php -------------------------------------------------------------------------------- /app/Mail/Purchases/LotSold.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Mail/Purchases/LotSold.php -------------------------------------------------------------------------------- /app/Models/Bid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Models/Bid.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/Lot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Models/Lot.php -------------------------------------------------------------------------------- /app/Models/LotImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Models/LotImage.php -------------------------------------------------------------------------------- /app/Models/Purchase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Models/Purchase.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/TelescopeServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Providers/TelescopeServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/BalanceMoreThenUserBids.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Rules/BalanceMoreThenUserBids.php -------------------------------------------------------------------------------- /app/Rules/GreaterThanMaxBid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Rules/GreaterThanMaxBid.php -------------------------------------------------------------------------------- /app/Services/Lot/DeleteService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Services/Lot/DeleteService.php -------------------------------------------------------------------------------- /app/Services/Lot/StoreService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Services/Lot/StoreService.php -------------------------------------------------------------------------------- /app/Services/MakeBidService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Services/MakeBidService.php -------------------------------------------------------------------------------- /app/Services/PurchaseService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Services/PurchaseService.php -------------------------------------------------------------------------------- /app/Services/UpdateProfileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/Services/UpdateProfileService.php -------------------------------------------------------------------------------- /app/View/Components/AppLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/View/Components/AppLayout.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/laravolt/avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/laravolt/avatar.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/purifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/purifier.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/session.php -------------------------------------------------------------------------------- /config/telescope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/telescope.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/CategoryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/factories/CategoryFactory.php -------------------------------------------------------------------------------- /database/factories/LotFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/factories/LotFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/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/CodingImproveLife/laravel-auction/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2021_07_07_203717_add_user_username.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_07_203717_add_user_username.php -------------------------------------------------------------------------------- /database/migrations/2021_07_12_194958_create_lots_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_12_194958_create_lots_table.php -------------------------------------------------------------------------------- /database/migrations/2021_07_14_220837_create_lot_images_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_14_220837_create_lot_images_table.php -------------------------------------------------------------------------------- /database/migrations/2021_07_18_192222_add_user_photo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_18_192222_add_user_photo.php -------------------------------------------------------------------------------- /database/migrations/2021_07_21_133932_add_user_balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_21_133932_add_user_balance.php -------------------------------------------------------------------------------- /database/migrations/2021_07_21_181101_create_bids_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_21_181101_create_bids_table.php -------------------------------------------------------------------------------- /database/migrations/2021_07_25_193332_add_lot_end_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_25_193332_add_lot_end_time.php -------------------------------------------------------------------------------- /database/migrations/2021_07_25_203247_add_lot_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_25_203247_add_lot_status.php -------------------------------------------------------------------------------- /database/migrations/2021_07_29_140612_create_categories_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_29_140612_create_categories_table.php -------------------------------------------------------------------------------- /database/migrations/2021_07_29_140925_add_lot_category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_29_140925_add_lot_category.php -------------------------------------------------------------------------------- /database/migrations/2021_07_31_203927_create_purchases_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_07_31_203927_create_purchases_table.php -------------------------------------------------------------------------------- /database/migrations/2021_08_24_193618_create_permission_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/migrations/2021_08_24_193618_create_permission_tables.php -------------------------------------------------------------------------------- /database/seeders/CategorySeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/seeders/CategorySeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/LotSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/seeders/LotSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/seeders/RoleSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/database/seeders/UserSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/telescope/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/vendor/telescope/app-dark.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/vendor/telescope/app.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/vendor/telescope/app.js -------------------------------------------------------------------------------- /public/vendor/telescope/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/vendor/telescope/favicon.ico -------------------------------------------------------------------------------- /public/vendor/telescope/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/vendor/telescope/mix-manifest.json -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/js/ckeditor.js -------------------------------------------------------------------------------- /resources/js/components/BidCountdownTimer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/js/components/BidCountdownTimer.vue -------------------------------------------------------------------------------- /resources/js/components/LotStatusBadge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/js/components/LotStatusBadge.vue -------------------------------------------------------------------------------- /resources/js/components/NewBid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/js/components/NewBid.vue -------------------------------------------------------------------------------- /resources/js/components/UniqueBids.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/js/components/UniqueBids.vue -------------------------------------------------------------------------------- /resources/js/components/UserPurchases.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/js/components/UserPurchases.vue -------------------------------------------------------------------------------- /resources/js/mixins/websocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/js/mixins/websocket.js -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/views/admin/lots/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/admin/lots/index.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/admin/users/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/users/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/admin/users/index.blade.php -------------------------------------------------------------------------------- /resources/views/auth/confirm-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/auth/confirm-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/forgot-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/auth/forgot-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/reset-password.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/auth/reset-password.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify-email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/auth/verify-email.blade.php -------------------------------------------------------------------------------- /resources/views/components/application-logo.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/application-logo.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/auth-card.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-session-status.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/auth-session-status.blade.php -------------------------------------------------------------------------------- /resources/views/components/auth-validation-errors.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/auth-validation-errors.blade.php -------------------------------------------------------------------------------- /resources/views/components/avatar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/avatar.blade.php -------------------------------------------------------------------------------- /resources/views/components/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/button.blade.php -------------------------------------------------------------------------------- /resources/views/components/default-lot-image.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/default-lot-image.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/dropdown-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/dropdown.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/dropdown.blade.php -------------------------------------------------------------------------------- /resources/views/components/input.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/input.blade.php -------------------------------------------------------------------------------- /resources/views/components/label.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/label.blade.php -------------------------------------------------------------------------------- /resources/views/components/nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/components/responsive-nav-link.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/components/responsive-nav-link.blade.php -------------------------------------------------------------------------------- /resources/views/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/emails/purchases/lot-bought.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/emails/purchases/lot-bought.blade.php -------------------------------------------------------------------------------- /resources/views/emails/purchases/lot-sold.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/emails/purchases/lot-sold.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/bid-form.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/layouts/bid-form.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/errors-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/layouts/errors-message.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/lot-images.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/layouts/lot-images.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/layouts/navigation.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/success-message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/layouts/success-message.blade.php -------------------------------------------------------------------------------- /resources/views/lots/all.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/lots/all.blade.php -------------------------------------------------------------------------------- /resources/views/lots/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/lots/create.blade.php -------------------------------------------------------------------------------- /resources/views/lots/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/lots/edit.blade.php -------------------------------------------------------------------------------- /resources/views/lots/one.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/lots/one.blade.php -------------------------------------------------------------------------------- /resources/views/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/resources/views/profile/edit.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/routes/auth.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/server.js -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/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 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/AuthenticationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Feature/AuthenticationTest.php -------------------------------------------------------------------------------- /tests/Feature/EmailVerificationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Feature/EmailVerificationTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/Lots/CreateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Feature/Lots/CreateTest.php -------------------------------------------------------------------------------- /tests/Feature/Lots/DeleteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Feature/Lots/DeleteTest.php -------------------------------------------------------------------------------- /tests/Feature/Lots/EditTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Feature/Lots/EditTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordConfirmationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Feature/PasswordConfirmationTest.php -------------------------------------------------------------------------------- /tests/Feature/PasswordResetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Feature/PasswordResetTest.php -------------------------------------------------------------------------------- /tests/Feature/RegistrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Feature/RegistrationTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodingImproveLife/laravel-auction/HEAD/webpack.mix.js --------------------------------------------------------------------------------