{"id":32290555,"url":"https://github.com/nylo-core/laravel-auth-slate","last_synced_at":"2026-03-07T03:31:44.683Z","repository":{"id":175167635,"uuid":"650952498","full_name":"nylo-core/laravel-auth-slate","owner":"nylo-core","description":"Laravel authentication for your Nylo project! Login, Register, Forgot Password and more","archived":false,"fork":false,"pushed_at":"2024-07-26T10:15:52.000Z","size":11249,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-11T10:36:18.899Z","etag":null,"topics":["auth","authentication","flutter","laravel","nylo","slate"],"latest_commit_sha":null,"homepage":"https://nylo.dev","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nylo-core.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["agordn52"]}},"created_at":"2023-06-08T07:02:50.000Z","updated_at":"2025-05-09T08:59:44.000Z","dependencies_parsed_at":"2024-02-05T17:28:00.253Z","dependency_job_id":"f56370a6-b9e9-48b1-bcfc-b4a8a3a8b3e7","html_url":"https://github.com/nylo-core/laravel-auth-slate","commit_stats":null,"previous_names":["nylo-core/laravel_auth_slate"],"tags_count":37,"template":false,"template_full_name":null,"purl":"pkg:github/nylo-core/laravel-auth-slate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nylo-core%2Flaravel-auth-slate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nylo-core%2Flaravel-auth-slate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nylo-core%2Flaravel-auth-slate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nylo-core%2Flaravel-auth-slate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nylo-core","download_url":"https://codeload.github.com/nylo-core/laravel-auth-slate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nylo-core%2Flaravel-auth-slate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30206567,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T03:24:23.086Z","status":"ssl_error","status_checked_at":"2026-03-07T03:23:11.444Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["auth","authentication","flutter","laravel","nylo","slate"],"created_at":"2025-10-23T02:53:22.151Z","updated_at":"2026-03-07T03:31:44.674Z","avatar_url":"https://github.com/nylo-core.png","language":"Dart","funding_links":["https://github.com/sponsors/agordn52"],"categories":[],"sub_categories":[],"readme":"# Laravel Authentication Slate\n\nScaffolds an authentication UI in your [Nylo](https://nylo.dev) project.\n\n### Getting Started\n\nIn your Flutter project add the dependency:\n\nWith Dart:\n\n``` bash\ndart pub add laravel_auth_slate\n```\n\nThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):\n\n``` dart \ndependencies:\n  ...\n  laravel_auth_slate: ^1.2.3\n```\n\n## Usage\n\nStep 1: Run the below command in your project.\n\n``` bash\ndart run laravel_auth_slate:main publish:all\n```\n\nWith Nylo\n\n``` bash \nmetro publish:slate laravel_auth_slate\n```\n\nStep 2: Go to `config/events.dart` and update the following event:\n\n``` bash\n// from\nSyncAuthToBackpackEvent: SyncAuthToBackpackEvent\u003cUser\u003e(),\n\n// to \nSyncAuthToBackpackEvent: SyncAuthToBackpackEvent\u003cLaravelAuthResponse\u003e(),\n```\n\n### Routes\n\nThe initial route should be `LandingPage`. \n\nGo to your `routes/router.dart` file and update the following:\n\n``` bash\nappRouter() =\u003e nyRoutes((router) {\n ...\n router.route(LandingPage.path, (context) =\u003e LandingPage(), initialRoute: true); // set to initial route\n \n});\n```\n\n## Update your .env file\n\nIn your **Nylo** project, navigate to your `.env` file and update the following line:\n\n``` bash\nAPP_URL=\"https://nylo.dev\" // old url\n\nAPP_URL=\"http://examplelaravel.test\" // your laravel project url\n```\n\n## Laravel project\n\nInstall the Laravel composer package [laravel-nylo-auth](https://github.com/nylo-core/laravel-nylo-auth).\n\nYou can install the package via composer:\n\n``` bash\ncomposer require nylo/laravel-nylo-auth\n```\n\nYou can publish with:\n\n``` bash\nphp artisan vendor:publish --provider=\"Nylo\\LaravelNyloAuth\\LaravelNyloAuthServiceProvider\"\n```\n\nNow, build and run the app and try to login, register and use the forgotten password page.\n\nCheck out the Laravel package [here](https://github.com/nylo-core/laravel-nylo-auth) for more information.\n\n## Requirements\n* Dart \u003e= 2.19.0\n* Flutter \u003e= 3.10.0\n\n## Files generated:\n- Pages\n  - LoginPage\n  - RegisterPage\n  - LandingPage\n  - DashboardPage\n  - AuthLandingPage\n- Controllers\n  - LoginController\n  - RegisterController\n  - ForgotPasswordController\n- Events\n  - LaravelAuthEvent\n- Networking\n  - LaravelApiService\n  - LaravelAuthService\n- Models\n  - AuthUser\n  - AuthResponse\n\n## Changelog\nPlease see [CHANGELOG](https://github.com/nylo-core/nylo-core/laravel-auth-slate/CHANGELOG.md) for more information what has changed recently.\n\n## Licence\n\nThe MIT License (MIT). Please view the [License](https://github.com/nylo-core/nylo-core/laravel-auth-slate/blob/master/licence) File for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnylo-core%2Flaravel-auth-slate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnylo-core%2Flaravel-auth-slate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnylo-core%2Flaravel-auth-slate/lists"}