PHPackages                             mfaris16/garuda-crud - 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. [Framework](/categories/framework)
4. /
5. mfaris16/garuda-crud

ActiveLibrary[Framework](/categories/framework)

mfaris16/garuda-crud
====================

Laravel 5.x Front-end preset for garuda

1.1(6y ago)06MITCSS

Since Jul 22Pushed 6y agoCompare

[ Source](https://github.com/mfaris16/garuda-crud)[ Packagist](https://packagist.org/packages/mfaris16/garuda-crud)[ Docs](https://github.com/mfaris16/garuda-crud)[ RSS](/packages/mfaris16-garuda-crud/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

### Via composer

[](#via-composer)

1. `Cd` to your Laravel app
2. Install this preset via `composer require mfaris16/garuda-crud`. No need to register the service provider. Laravel 5.5 &amp; up can auto detect the package.
3. Run `php artisan preset garuda` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
4. In your terminal run `composer dump-autoload`
5. Run `php artisan migrate --seed` to create basic users table

### By using the archive

[](#by-using-the-archive)

1. In your application's root create a **presets** folder
2. [Download an archive](https://github.com/mfaris16/garuda-crud/archive/master.zip) of the repo and unzip it
3. Copy and paste **garuda-crud-master** folder in presets (created in step 2) and rename it to **garuda**
4. Open `composer.json` file
5. Add `"LaravelFrontendPresets\\GarudaPreset\\": "presets/garuda/src"` to `autoload/psr-4` and to `autoload-dev/psr-4`
6. Add `LaravelFrontendPresets\GarudaPreset\GarudaPresetServiceProvider::class` to `config/app.php` file
7. In your terminal run `composer dump-autoload`
8. Run `php artisan preset garuda` command to install the Argon preset. This will install all the necessary assets and also the custom auth views, it will also add the auth route in `routes/web.php`(NOTE: If you run this command several times, be sure to clean up the duplicate Auth entries in routes/web.php)
9. Run `php artisan migrate --seed` to create basic users table

Usage
-----

[](#usage)

Register a user or login using **** and **password** and start testing the preset (make sure to run the migrations and seeders for these credentials to be available).

Besides the dashboard and the auth pages this preset also has a user management example and an edit profile page. All the necessary files (controllers, requests, views) are installed out of the box and all the needed routes are added to `routes/web.php`. Keep in mind that all of the features can be viewed once you login using the credentials provided above or by registering your own user.

### Dashboard

[](#dashboard)

You can access the dashboard either by using the "**Dashboard**" link in the left sidebar or by adding **/home** in the url.

### Profile edit

[](#profile-edit)

You have the option to edit the current logged in user's profile (change name, email and password). To access this page just click the "**User profile**" link in the left sidebar or by adding **/profile** in the url.

The `App\Htttp\Controlers\ProfileController` handles the update of the user information.

```
public function update(ProfileRequest $request)
{
    auth()->user()->update($request->all());

    return back()->withStatus(__('Profile successfully updated.'));
}

```

Also you shouldn't worry about entering wrong data in the inputs when editing the profile, validation rules were added to prevent this (see `App\Http\Requests\ProfileRequest`). If you try to change the password you will see that other validation rules were added in `App\Http\Requests\PasswordRequest`. Notice that in this file you have a custom validation rule that can be found in `App\Rules\CurrentPasswordCheckRule`.

```
public function rules()
{
    return [
        'old_password' => ['required', 'min:6', new CurrentPasswordCheckRule],
        'password' => ['required', 'min:6', 'confirmed', 'different:old_password'],
        'password_confirmation' => ['required', 'min:6'],
    ];
}

```

### User management

[](#user-management)

The preset comes with a user management option out of the box. To access this click the "**User Management**" link in the left sidebar or add **/user** to the url. The first thing you will see is the listing of the existing users. You can add new ones by clicking the "**Add user**" button (above the table on the right). On the Add user page you will see the form that allows you to do this. All pages are generate using blade templates:

```

    {{ __('Name') }}

    @if ($errors->has('name'))

            {{ $errors->first('name') }}

    @endif

```

Also validation rules were added so you will know exactely what to enter in the form fields (see `App\Http\Requests\UserRequest`). Note that these validation rules also apply for the user edit option.

```
public function rules()
{
    return [
        'name' => [
            'required', 'min:3'
        ],
        'email' => [
            'required', 'email', Rule::unique((new User)->getTable())->ignore($this->route()->user->id ?? null)
        ],
        'password' => [
            $this->route()->user ? 'nullable' : 'required', 'confirmed', 'min:6'
        ]
    ];
}

```

Once you add more users, the list will get bigger and for every user you will have edit and delete options (access these options by clicking the three dotted menu that appears at the end of every line).

All the sample code for the user management can be found in `App\Http\Controllers\UserController`. See store method example bellow:

```
public function store(UserRequest $request, User $model)
{
    $model->create($request->merge(['password' => Hash::make($request->get('password'))])->all());

    return redirect()->route('user.index')->withStatus(__('User successfully created.'));
}

```

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information on what has changed recently.

Credits
-------

[](#credits)

- [Creative Tim](https://creative-tim.com/)
- [Updivision](https://updivision.com)
- [Garuda Tech](https://garudatech.id)

License
-------

[](#license)

[MIT License](https://github.com/laravel-frontend-presets/argon/blob/master/license.md). [MIT License](https://github.com/mfaris16/garuda-crud/blob/master/license.md).

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity60

Established project with proven stability

 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 ~0 days

Total

2

Last Release

2485d ago

### Community

Maintainers

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

---

Top Contributors

[![mfarisadip](https://avatars.githubusercontent.com/u/40176160?v=4)](https://github.com/mfarisadip "mfarisadip (12 commits)")

---

Tags

laravelpresetgaruda

### Embed Badge

![Health badge](/badges/mfaris16-garuda-crud/health.svg)

```
[![Health](https://phpackages.com/badges/mfaris16-garuda-crud/health.svg)](https://phpackages.com/packages/mfaris16-garuda-crud)
```

###  Alternatives

[laravel/nightwatch

The official Laravel Nightwatch package.

3486.1M13](/packages/laravel-nightwatch)[laravel-frontend-presets/black-dashboard

Laravel 11.x Front-end preset for black dashboard

8726.2k](/packages/laravel-frontend-presets-black-dashboard)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3691.5k](/packages/codewithdennis-larament)[kompo/kompo

Laravel &amp; Vue.js FullStack Components for Rapid Application Development

11812.4k21](/packages/kompo-kompo)

PHPackages © 2026

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