gitextract_l9s_v4gw/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── greetings.yml │ └── laravel.yml ├── .gitignore ├── .idea/ │ ├── .gitignore │ ├── codeStyles/ │ │ └── codeStyleConfig.xml │ ├── composerJson.xml │ ├── dictionaries/ │ │ └── rixton.xml │ ├── foqus.iml │ ├── inspectionProfiles/ │ │ └── Project_Default.xml │ ├── laravel-plugin.xml │ ├── misc.xml │ ├── modules.xml │ ├── php.xml │ ├── symfony2.xml │ └── vcs.xml ├── .styleci.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Procfile ├── README.md ├── _config.yml ├── app/ │ ├── Charts/ │ │ └── SampleChart.php │ ├── Console/ │ │ └── Kernel.php │ ├── Exceptions/ │ │ └── Handler.php │ ├── Http/ │ │ ├── Controllers/ │ │ │ ├── Auth/ │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── Controller.php │ │ │ ├── HomeController.php │ │ │ └── ProfileController.php │ │ ├── Kernel.php │ │ ├── Livewire/ │ │ │ ├── Cards.php │ │ │ └── Search.php │ │ └── Middleware/ │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Providers/ │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── User.php │ └── View/ │ └── Components/ │ ├── Carousel.php │ ├── Charts.php │ ├── EarningsChart.php │ ├── FileUploads.php │ ├── Github.php │ └── StatisticsChart.php ├── artisan ├── bootstrap/ │ ├── app.php │ └── cache/ │ └── .gitignore ├── composer.json ├── config/ │ ├── app.php │ ├── auth.php │ ├── blade-icons.php │ ├── broadcasting.php │ ├── cache.php │ ├── charts.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── larapex-charts.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── services.php │ ├── session.php │ └── view.php ├── container() ├── database/ │ ├── .gitignore │ ├── factories/ │ │ └── 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 │ └── seeds/ │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public/ │ ├── .htaccess │ ├── css/ │ │ ├── app.css │ │ └── table.css │ ├── index.php │ ├── js/ │ │ └── app.js │ ├── mix-manifest.json │ ├── robots.txt │ └── vendor/ │ └── larapex-charts/ │ └── apexcharts.js ├── resources/ │ ├── css/ │ │ └── app.css │ ├── js/ │ │ ├── app.js │ │ └── bootstrap.js │ ├── lang/ │ │ └── en/ │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── views/ │ ├── auth/ │ │ ├── login.blade.php │ │ ├── passwords/ │ │ │ ├── confirm.blade.php │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── register.blade.php │ │ └── verify.blade.php │ ├── components/ │ │ ├── card.blade.php │ │ ├── carousel.blade.php │ │ ├── charts.blade.php │ │ ├── earnings-chart.blade.php │ │ ├── file-uploads.blade.php │ │ ├── github.blade.php │ │ ├── item.blade.php │ │ └── statistics-chart.blade.php │ ├── github.blade.php │ ├── home.blade.php │ ├── layouts/ │ │ ├── admin.blade.php │ │ ├── app.blade.php │ │ ├── navbar.blade.php │ │ └── sidebar.blade.php │ ├── livewire/ │ │ ├── cards.blade.php │ │ └── search.blade.php │ ├── profile/ │ │ └── index.blade.php │ └── vendor/ │ ├── larapex-charts/ │ │ └── chart/ │ │ ├── container.blade.php │ │ ├── script-with-stroke.blade.php │ │ └── script.blade.php │ └── pagination/ │ ├── default.blade.php │ └── simple-default.blade.php ├── routes/ │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── script() ├── server.php ├── some.php ├── storage/ │ ├── app/ │ │ └── .gitignore │ ├── framework/ │ │ ├── .gitignore │ │ ├── cache/ │ │ │ └── .gitignore │ │ ├── sessions/ │ │ │ └── .gitignore │ │ ├── testing/ │ │ │ └── .gitignore │ │ └── views/ │ │ └── .gitignore │ └── logs/ │ └── .gitignore ├── tailwind.config.js ├── tests/ │ ├── CreatesApplication.php │ ├── Feature/ │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit/ │ └── ExampleTest.php └── webpack.mix.js