{"id":19423235,"url":"https://github.com/atomjoy/apilogin-panel","last_synced_at":"2026-03-19T09:49:29.762Z","repository":{"id":186366122,"uuid":"675074112","full_name":"atomjoy/apilogin-panel","owner":"atomjoy","description":"Vue3 admin and client panel with Laravel rest api and f2a email authentication and spatie permissions.","archived":false,"fork":false,"pushed_at":"2024-07-15T14:28:23.000Z","size":1211,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-25T04:32:20.675Z","etag":null,"topics":["apilogin-panel","atomjoy-panel","vue3-client-panel","vue3-laravel","vue3-laravel-spa","vue3-panel","vue3-settings-panel"],"latest_commit_sha":null,"homepage":"https://github.com/atomjoy/apilogin-panel","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/atomjoy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-05T17:25:58.000Z","updated_at":"2024-07-16T12:48:19.000Z","dependencies_parsed_at":"2024-02-10T15:29:58.755Z","dependency_job_id":"35ba695f-5d6d-4738-8dac-5b0aff74ae53","html_url":"https://github.com/atomjoy/apilogin-panel","commit_stats":null,"previous_names":["atomjoy/apilogin-panel"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/atomjoy/apilogin-panel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomjoy%2Fapilogin-panel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomjoy%2Fapilogin-panel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomjoy%2Fapilogin-panel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomjoy%2Fapilogin-panel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atomjoy","download_url":"https://codeload.github.com/atomjoy/apilogin-panel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atomjoy%2Fapilogin-panel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29978612,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T16:35:47.903Z","status":"ssl_error","status_checked_at":"2026-03-01T16:35:44.899Z","response_time":124,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["apilogin-panel","atomjoy-panel","vue3-client-panel","vue3-laravel","vue3-laravel-spa","vue3-panel","vue3-settings-panel"],"created_at":"2024-11-10T13:37:29.725Z","updated_at":"2026-03-01T18:32:47.614Z","avatar_url":"https://github.com/atomjoy.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Apilogin Panel (Vue3, Laravel)\n\nVue3 minimal client panel with Laravel backend rest api (client profil, address, avatar upload, change password, change theme, change locale, dark mode, user profil menu, delete account).\n\n## Install\n\n- Set the database and smtp server credentials in the .env configuration file.\n- Set settings from [atomjoy/apilogin](https://github.com/atomjoy/apilogin) README.md if something went wrong.\n\n```sh\n# notifications, storage\nphp artisan notifications:table\nphp artisan storage:link\n\n# db tables\nphp artisan migrate:fresh\nphp artisan migrate:fresh --env=testing\n\n# images public link\nphp artisan storage:link\n\n# install packages\nnpm install\n\n# install packages\ncomposer update\ncomposer dump-autoload -o\n\n# build vue\nnpm run build\n\n# run server\nphp artisan serve --host=localhost --port=8000\n\n# Go to the registration page from your browser, create an account, then confirm your email address and log in.\nhttp://localhost:8000/register\n```\n\n## Translations\n\nIf the translations were not loaded automatically.\n\n```sh\n# create app/lang translations\nphp artisan lang:publish\n\n# copy dir\nThen copy apilogin/lang dir to laravel app/lang dir\n```\n\n## Tests\n\n```sh\n# tests\nphp artisan test --stop-on-failure --testsuite=Apilogin\n\n# seeder\nphp artisan db:seed --class=ApiloginSeeder\n```\n\n## Database\n\nDatabase and user configuration.\n\n### Create mysql database\n\n```sql\nCREATE DATABASE IF NOT EXISTS laravel CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;\nCREATE DATABASE IF NOT EXISTS laravel_testing CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;\n```\n\n### Create mysql user password\n\n```sql\nGRANT ALL PRIVILEGES ON *.* TO root@localhost IDENTIFIED BY 'toor' WITH GRANT OPTION;\nGRANT ALL PRIVILEGES ON *.* TO root@127.0.0.1 IDENTIFIED BY 'toor' WITH GRANT OPTION;\n```\n\n### Settings\n\n```sh\n# .env\nAPP_ENV=local\nAPP_DEBUG=false\n\n# Mysql settings\nDB_CONNECTION=mysql\nDB_HOST=127.0.0.1\nDB_PORT=3306\nDB_DATABASE=laravel\nDB_USERNAME=root\nDB_PASSWORD=toor\n\n# Smtp (etc. gmail, mailgun or localhost)\nMAIL_MAILER=smtp\nMAIL_HOST=localhost\nMAIL_PORT=25\nMAIL_USERNAME=\nMAIL_PASSWORD=\nMAIL_ENCRYPTION=\nMAIL_FROM_ADDRESS=\"hello@local.host\"\nMAIL_FROM_NAME=\"${APP_NAME}\"\n\n# Gmail smtp\nMAIL_MAILER=smtp\nMAIL_HOST=smtp.gmail.com\nMAIL_PORT=587\nMAIL_USERNAME=atomjoy.official@gmail.com\nMAIL_PASSWORD=\nMAIL_ENCRYPTION=tls\nMAIL_FROM_ADDRESS=\"atomjoy.official@gmail.com\"\nMAIL_FROM_NAME=\"${APP_NAME}\"\n```\n\n## Screens\n\n\u003cimg src=\"https://raw.githubusercontent.com/atomjoy/apilogin-panel/main/screenshots/apilogin-panel-white.png\" width=\"100%\"\u003e\n\u003cimg src=\"https://raw.githubusercontent.com/atomjoy/apilogin-panel/main/screenshots/apilogin-panel-dark.png\" width=\"100%\"\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomjoy%2Fapilogin-panel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatomjoy%2Fapilogin-panel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatomjoy%2Fapilogin-panel/lists"}