PHPackages                             ajaycalicut17/meadow - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Authentication &amp; Authorization](/categories/authentication)
4. /
5. ajaycalicut17/meadow

ActiveLibrary[Authentication &amp; Authorization](/categories/authentication)

ajaycalicut17/meadow
====================

Meadow is a laravel package used for instant admin panel.

v2.5.0(3y ago)1361MITBlade

Since Apr 16Pushed 3y ago1 watchersCompare

[ Source](https://github.com/ajaycalicut17/meadow)[ Packagist](https://packagist.org/packages/ajaycalicut17/meadow)[ Docs](https://github.com/ajaycalicut17/meadow)[ RSS](/packages/ajaycalicut17-meadow/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (7)Dependencies (1)Versions (8)Used By (0)

Meadow
======

[](#meadow)

[![Packagist Downloads](https://camo.githubusercontent.com/8389a79a6e287262d44beb82bcddd15419e5f3e5b6e1386c881b157b3e6bce54/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f616a617963616c6963757431372f6d6561646f77)](https://packagist.org/packages/ajaycalicut17/meadow)[![Packagist Version](https://camo.githubusercontent.com/a1660c3d4e7ae087ddece4c1da2d26a05307d1b3743c5ffecf94844feef1e5bf/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f616a617963616c6963757431372f6d6561646f77)](https://packagist.org/packages/ajaycalicut17/meadow)[![Packagist License](https://camo.githubusercontent.com/8ee455fd03ac1a45cbe54e4a0a39aef9e87356b5af80a168d00275e3618be59d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f616a617963616c6963757431372f6d6561646f77)](https://packagist.org/packages/ajaycalicut17/meadow)

Meadow is a laravel package used for instant admin panel.

Important
---------

[](#important)

This package should only be installed into new Laravel applications. Attempting to install into an existing Laravel application will result in unexpected behavior and issues.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require ajaycalicut17/meadow --dev
```

Run artisan command for installation:

```
php artisan meadow:install
```

Run npm

```
npm install && npm run dev
```

Database migration

```
php artisan migrate
```

Create a new user account using:

```
php artisan make:meadow-user
```

Features
--------

[](#features)

- [Authentication](https://laravel.com/docs/fortify#authentication)
- [Two Factor Authentication](https://laravel.com/docs/fortify#two-factor-authentication)

Enable two factor authentication feature in config/fortify.php

```
Features::twoFactorAuthentication([
 'confirm' => true,
 'confirmPassword' => true,
]),

```

Ensure App\\Models\\User model uses the Laravel\\Fortify\\TwoFactorAuthenticatable trait.

```
use Laravel\Fortify\TwoFactorAuthenticatable;

class User extends Authenticatable
{
  use TwoFactorAuthenticatable;

```

- [Registration](https://laravel.com/docs/fortify#registration)
- [Password Reset](https://laravel.com/docs/fortify#password-reset)
- [Email Verification](https://laravel.com/docs/fortify#email-verification)

Enable email verification feature in config/fortify.php

```
Features::emailVerification(),

```

Ensure App\\Models\\User class implements the Illuminate\\Contracts\\Auth\\MustVerifyEmail interface.

```
use Illuminate\Contracts\Auth\MustVerifyEmail;

class User extends Authenticatable implements MustVerifyEmail
{

```

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.

```
Route::view('/home', 'home.index')->name('home')->middleware('verified');

```

- [Password Confirmation](https://laravel.com/docs/fortify#password-confirmation)

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.

```
Route::view('/home', 'home.index')->name('home')->middleware('password.confirm');

```

Dependents
----------

[](#dependents)

- [Laravel](https://laravel.com)
- [Laravel Fortify](https://laravel.com/docs/fortify)
- [Tailwind CSS](https://tailwindcss.com)
- [Alpine.js](https://alpinejs.dev)
- [Windmill Dashboard HTML](https://windmillui.com/dashboard-html)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~9 days

Total

7

Last Release

1429d ago

Major Versions

v1.0.0 → v2.0.02022-04-17

### Community

Maintainers

![](https://www.gravatar.com/avatar/dcbe827dd159fe1f10557e9cc14c787720392aab5131ff2424022dbfc63f4d23?d=identicon)[ajaycalicut17](/maintainers/ajaycalicut17)

---

Top Contributors

[![ajaycalicut17](https://avatars.githubusercontent.com/u/33749143?v=4)](https://github.com/ajaycalicut17 "ajaycalicut17 (72 commits)")

---

Tags

adminalpinejsauthauthenticationdashboardlaravellaravel-adminlaravel-admin-panellaravel-adminpanellaravel-applicationlaravel-fortifylaravel-starterstarterstarter-kitstarter-templatetailwindtailwindcsswindmill-dashboardlaravelajaycalicut17meadow

### Embed Badge

![Health badge](/badges/ajaycalicut17-meadow/health.svg)

```
[![Health](https://phpackages.com/badges/ajaycalicut17-meadow/health.svg)](https://phpackages.com/packages/ajaycalicut17-meadow)
```

###  Alternatives

[wychoong/filament-fortify

Laravel Fortify for Filament Admin

3313.7k](/packages/wychoong-filament-fortify)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
