{"id":33996555,"url":"https://github.com/ajaycalicut17/meadow","last_synced_at":"2026-04-18T16:39:06.667Z","repository":{"id":57673751,"uuid":"453611110","full_name":"ajaycalicut17/meadow","owner":"ajaycalicut17","description":"Meadow is a laravel package used for instant admin panel","archived":false,"fork":false,"pushed_at":"2022-06-19T09:48:16.000Z","size":216,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-11T19:34:58.620Z","etag":null,"topics":["admin","alpinejs","auth","authentication","dashboard","laravel","laravel-admin","laravel-admin-panel","laravel-adminpanel","laravel-application","laravel-fortify","laravel-starter","starter","starter-kit","starter-template","tailwind","tailwindcss","windmill-dashboard"],"latest_commit_sha":null,"homepage":"","language":"Blade","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/ajaycalicut17.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-01-30T07:02:16.000Z","updated_at":"2022-05-02T03:37:26.000Z","dependencies_parsed_at":"2022-08-31T11:51:12.272Z","dependency_job_id":null,"html_url":"https://github.com/ajaycalicut17/meadow","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/ajaycalicut17/meadow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaycalicut17%2Fmeadow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaycalicut17%2Fmeadow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaycalicut17%2Fmeadow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaycalicut17%2Fmeadow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ajaycalicut17","download_url":"https://codeload.github.com/ajaycalicut17/meadow/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajaycalicut17%2Fmeadow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31976801,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T16:27:12.723Z","status":"ssl_error","status_checked_at":"2026-04-18T16:27:11.140Z","response_time":103,"last_error":"SSL_read: 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":["admin","alpinejs","auth","authentication","dashboard","laravel","laravel-admin","laravel-admin-panel","laravel-adminpanel","laravel-application","laravel-fortify","laravel-starter","starter","starter-kit","starter-template","tailwind","tailwindcss","windmill-dashboard"],"created_at":"2025-12-13T08:24:21.466Z","updated_at":"2026-04-18T16:39:06.662Z","avatar_url":"https://github.com/ajaycalicut17.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Meadow\n[![Packagist Downloads](https://img.shields.io/packagist/dt/ajaycalicut17/meadow)](https://packagist.org/packages/ajaycalicut17/meadow)\n[![Packagist Version](https://img.shields.io/packagist/v/ajaycalicut17/meadow)](https://packagist.org/packages/ajaycalicut17/meadow)\n[![Packagist License](https://img.shields.io/packagist/l/ajaycalicut17/meadow)](https://packagist.org/packages/ajaycalicut17/meadow)\n\nMeadow is a laravel package used for instant admin panel.\n\n## Important\nThis package should only be installed into new Laravel applications. Attempting to install into an existing Laravel application will result in unexpected behavior and issues.\n\n## Installation\n\nYou can install the package via composer:\n\n``` bash\ncomposer require ajaycalicut17/meadow --dev\n```\n\nRun artisan command for installation:\n\n``` bash\nphp artisan meadow:install\n```\n\nRun npm\n\n``` bash\nnpm install \u0026\u0026 npm run dev\n```\n\nDatabase migration\n\n``` bash\nphp artisan migrate\n```\n\nCreate a new user account using:\n``` bash\nphp artisan make:meadow-user\n```\n\n## Features\n\n - [Authentication](https://laravel.com/docs/fortify#authentication)\n - [Two Factor Authentication](https://laravel.com/docs/fortify#two-factor-authentication)\n\n  Enable two factor authentication feature in config/fortify.php\n  ```code\n  Features::twoFactorAuthentication([\n   'confirm' =\u003e true,\n   'confirmPassword' =\u003e true,\n  ]),\n  ```\n  Ensure App\\Models\\User model uses the Laravel\\Fortify\\TwoFactorAuthenticatable trait.\n  ```code\n  use Laravel\\Fortify\\TwoFactorAuthenticatable;\n\n  class User extends Authenticatable\n  {\n    use TwoFactorAuthenticatable;\n  ```\n  \n - [Registration](https://laravel.com/docs/fortify#registration)\n - [Password Reset](https://laravel.com/docs/fortify#password-reset)\n - [Email Verification](https://laravel.com/docs/fortify#email-verification)\n  \n  Enable email verification feature in config/fortify.php\n  ```code\n  Features::emailVerification(),\n  ```\n  Ensure App\\Models\\User class implements the Illuminate\\Contracts\\Auth\\MustVerifyEmail interface.\n  ```code\n  use Illuminate\\Contracts\\Auth\\MustVerifyEmail;\n\n  class User extends Authenticatable implements MustVerifyEmail\n  {\n  ```\n  To specify that a route or group of routes requires that the user has verified their email address, you should attach verified middleware to the route.\n  ```code\n  Route::view('/home', 'home.index')-\u003ename('home')-\u003emiddleware('verified');\n  ```\n  \n - [Password Confirmation](https://laravel.com/docs/fortify#password-confirmation)\n\n  To specify that a route or group of routes requires that the user has confirmed their current password, you should attach password.confirm middleware     to the route.\n  ```code\n  Route::view('/home', 'home.index')-\u003ename('home')-\u003emiddleware('password.confirm');\n  ```\n  \n## Dependents\n\n - [Laravel](https://laravel.com)\n - [Laravel Fortify](https://laravel.com/docs/fortify)\n - [Tailwind CSS](https://tailwindcss.com)\n - [Alpine.js](https://alpinejs.dev)\n - [Windmill Dashboard HTML](https://windmillui.com/dashboard-html)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajaycalicut17%2Fmeadow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fajaycalicut17%2Fmeadow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajaycalicut17%2Fmeadow/lists"}