PHPackages                             winglife/laravel-nova-tabs - 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. winglife/laravel-nova-tabs

ActiveLibrary

winglife/laravel-nova-tabs
==========================

Laravel Nova - Tabs

v0.1.0(2y ago)04MITJavaScriptPHP ^7.4|^8

Since Sep 21Pushed 2y ago1 watchersCompare

[ Source](https://github.com/winglife/laravel-nova-tabs)[ Packagist](https://packagist.org/packages/winglife/laravel-nova-tabs)[ RSS](/packages/winglife-laravel-nova-tabs/feed)WikiDiscussions master Synced 1mo ago

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

laravel-nova-tabs
=================

[](#laravel-nova-tabs)

[![Latest Stable Version](https://camo.githubusercontent.com/fc85ee08512149823815441628392ffe1a5acac90fff029595e671ded9322d4f/68747470733a2f2f706f7365722e707567782e6f72672f77696e676c6966652f6c61726176656c2d6e6f76612d746162732f762f737461626c65)](https://packagist.org/packages/winglife/laravel-nova-tabs)[![Total Downloads](https://camo.githubusercontent.com/4b049960e450de66c29b262f06cafceebb7a4e851cf7399b06ceebac8a3b469b/68747470733a2f2f706f7365722e707567782e6f72672f77696e676c6966652f6c61726176656c2d6e6f76612d746162732f646f776e6c6f616473)](https://packagist.org/packages/winglife/laravel-nova-tabs)[![Latest Unstable Version](https://camo.githubusercontent.com/7346e4bdc48238af46a5a05ac3a6fb4ac4112dac06adad8c7f63223a952342bf/68747470733a2f2f706f7365722e707567782e6f72672f77696e676c6966652f6c61726176656c2d6e6f76612d746162732f762f756e737461626c65)](https://packagist.org/packages/winglife/laravel-nova-tabs)[![License](https://camo.githubusercontent.com/7f523cac28594713b5fa93923e2d46d961993cd059d370d6d85b9057694cb999/68747470733a2f2f706f7365722e707567782e6f72672f77696e676c6966652f6c61726176656c2d6e6f76612d746162732f6c6963656e7365)](https://packagist.org/packages/winglife/laravel-nova-tabs)

Requirements
------------

[](#requirements)

- `php: ^7.4 | ^8`
- `laravel/nova: ^4`

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

[](#installation)

You can install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:

```
composer require winglife/laravel-nova-tabs
```

Usage
-----

[](#usage)

```
// app/Nova/User.php

namespace App\Nova;

use Illuminate\Validation\Rules;
use Laravel\Nova\Fields\Gravatar;
use Laravel\Nova\Fields\ID;
use Laravel\Nova\Fields\Password;
use Laravel\Nova\Fields\Text;
use Laravel\Nova\Http\Requests\NovaRequest;
use Winglife\LaravelNovaTabs\Tab;
use Winglife\LaravelNovaTabs\Tabs;

class User extends Resource
{

    public function fields(NovaRequest $request)
    {
        return [
            Tabs::make('Test', [
                Tab::make('One', [
                    ID::make()->sortable(),
                    Gravatar::make()->maxWidth(50),
                    Text::make('Email')
                        ->sortable()
                        ->rules('required', 'email', 'max:254')
                        ->creationRules('unique:users,email')
                        ->updateRules('unique:users,email,{{resourceId}}'),
                ]),
                Tab::make('Two', [
                    Text::make('Name')
                        ->sortable()
                        ->rules('required', 'max:255'),
                    Text::make('Email')
                        ->sortable()
                        ->rules('required', 'email', 'max:254')
                        ->creationRules('unique:users,email')
                        ->updateRules('unique:users,email,{{resourceId}}'),
                ]),
                Tab::make('Tree', [
                    Password::make('Password')
                        ->onlyOnForms()
                        ->creationRules('required', Rules\Password::defaults())
                        ->updateRules('nullable', Rules\Password::defaults()),
                ]),
            ]),
        ];
    }
```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity33

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

964d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8aa31c29f934e6347801a43249d793a0d5be031bc071874bdab61b937ab8929e?d=identicon)[winglife](/maintainers/winglife)

---

Top Contributors

[![winglife](https://avatars.githubusercontent.com/u/58323006?v=4)](https://github.com/winglife "winglife (1 commits)")

---

Tags

laravelnova

### Embed Badge

![Health badge](/badges/winglife-laravel-nova-tabs/health.svg)

```
[![Health](https://phpackages.com/badges/winglife-laravel-nova-tabs/health.svg)](https://phpackages.com/packages/winglife-laravel-nova-tabs)
```

###  Alternatives

[eminiarts/nova-tabs

Laravel Nova - Tabs.

4624.1M20](/packages/eminiarts-nova-tabs)[optimistdigital/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2872.1M6](/packages/optimistdigital-nova-sortable)[outl1ne/nova-sortable

This Laravel Nova package allows you to reorder models in a Nova resource's index view using drag &amp; drop.

2861.8M9](/packages/outl1ne-nova-sortable)[oneduo/nova-file-manager

A handy file manager tool for Laravel Nova

157350.3k2](/packages/oneduo-nova-file-manager)[laravel/nova-log-viewer

A Laravel Nova tool for viewing your application logs.

136301.3k1](/packages/laravel-nova-log-viewer)[stepanenko3/nova-command-runner

Laravel Nova tool for running Artisan and bash(shell) commands.

36983.0k](/packages/stepanenko3-nova-command-runner)

PHPackages © 2026

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