PHPackages                             daltonmccleery/laravel-quick-start - 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. daltonmccleery/laravel-quick-start

AbandonedArchivedLibrary[Framework](/categories/framework)

daltonmccleery/laravel-quick-start
==================================

Quick Start package to get up and running with a pre-defined Laravel Structure

v0.1.2(4y ago)1207MITPHPPHP ^7.4|^8.0

Since May 3Pushed 4y ago1 watchersCompare

[ Source](https://github.com/DaltonMcCleery/laravel-quick-start)[ Packagist](https://packagist.org/packages/daltonmccleery/laravel-quick-start)[ Docs](https://github.com/DaltonMcCleery/laravel-quick-start)[ RSS](/packages/daltonmccleery-laravel-quick-start/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (4)Dependencies (2)Versions (36)Used By (0)

Laravel Quick Start
===================

[](#laravel-quick-start)

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

[](#requirements)

This package is dependent on some 3rd party Laravel Nova packages, outlined below, so you must have Nova installed and configured prior to installing this package.

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

[](#installation)

Install this package via Composer:

```
composer require daltonmccleery/laravel-quick-start

```

Publish all package assets into your application:

```
php artisan vendor:publish --provider="DaltonMcCleery\LaravelQuickStart\LaravelQuickStartServiceProvider" --force
```

Then, run the new migrations:

```
php artisan migrate
```

### Laravel Nova

[](#laravel-nova)

Update your `NovaServiceProvider` to include the following changes:

```
/**
 * Register the application's Nova resources.
 *
 * @return void
*/
protected function resources()
{
    Nova::resourcesIn(app_path('Nova'));

    Nova::resources([
        \DaltonMcCleery\LaravelQuickStart\Nova\Page::class,
        \DaltonMcCleery\LaravelQuickStart\Nova\Redirect::class,
        \DaltonMcCleery\LaravelQuickStart\Nova\MainNavMenu::class,
        \DaltonMcCleery\LaravelQuickStart\Nova\BannerPromos::class,
        \DaltonMcCleery\LaravelQuickStart\Nova\MobileNavMenu::class,
        \DaltonMcCleery\LaravelQuickStart\Nova\FooterNavMenu::class,
        \DaltonMcCleery\LaravelQuickStart\Nova\ReusableBlocks::class
    ]);
}
```

### Redirects

[](#redirects)

Update your `Http/Kernal.php` to add the following line as the last entry in the `$middleware` array:

```
protected $middleware = [
    // ...
    \DaltonMcCleery\LaravelQuickStart\Http\Middleware\RedirectRequests::class,
];
```

### Model Revisions

[](#model-revisions)

To include Revisional history of changes, add the following Trait to your Model:

```
use DaltonMcCleery\LaravelQuickStart\Traits\HasModelRevisions;

class YourModel extends Model
{
    use HasModelRevisions;
```

If you're using Nova, you'll need to update your Model's `boot` method as follows:

```
use DaltonMcCleery\LaravelQuickStart\Traits\HasModelRevisions;

class YourModel extends Model
{

    /**
     * The "booted" method of the model.
     *
     * @return void
     */
    protected static function booted()
    {
        static::updating(function ($model) {
            if ($model->create_new_revision) {
                $model = self::create_static_revision($model);
            }
        });
    }
```

Next, add a checkbox field to that Model's Nova resource, like so:

```
Boolean::make('Create New Revision', 'create_new_revision')
    ->trueValue(1)
    ->falseValue(0)
    ->hideFromDetail()->hideFromIndex()->hideWhenCreating()
    ->help('Create a new revision upon saving that can be reverted to at any time.')
    ->rules('nullable')
```

Lastly, you can add a Nova Action to your Model resource for reverting to a specific revision:

```
use DaltonMcCleery\LaravelQuickStart\Nova\Actions\RevertRevision;

public function actions(Request $request)
{
    return [
        new RevertRevision($request->resourceId, $this)
    ];
}
```

Now you can create new revisions either statically (via static model closures) or non-statically

```
self::create_static_revision($model);

$this->create_revision($model);
```

You can also rollback to the latest revision, or specify an ID of a revision:

```
$model->revert_last_revision();

$model->revert_to_revision(1);
```

### Routing

[](#routing)

By default, the package will autoload the catch-all routes, which will override your application's routes in the `web.php` file. You may disable the auto-routing via the published config file and manually load the routes by adding the following line in your `RouteServiceProvider`'s boot method:

```
Route::middleware('web')
    ->namespace($this->namespace)
    ->group(base_path('routes/web.php'));

// Add...
\DaltonMcCleery\LaravelQuickStart\LaravelQuickStartServiceProvider::registerRoutes();
```

Built With
----------

[](#built-with)

- [Auto Resolvable Laravel Blade Components](https://github.com/ahinkle/auto-resolvable-blade-components) *(Blade Component Auto Resolver)*
- [Nova Charcounted Fields](https://github.com/elevate-digital/nova-charcounted-fields) *(Text Fields)*
- [Nova Filemanager](https://github.com/InfinetyEs/Nova-Filemanager) *(File/Asset Manager)*
- [Nova Tiptap](https://github.com/manogi/nova-tiptap) *(Editor Field)*
- [Nova Flexible Content](https://github.com/whitecube/nova-flexible-content) *(Content Repeater Fields)*

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

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

Recently: every ~14 days

Total

34

Last Release

1613d ago

### Community

Maintainers

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

---

Top Contributors

[![DaltonMcCleery](https://avatars.githubusercontent.com/u/37309201?v=4)](https://github.com/DaltonMcCleery "DaltonMcCleery (128 commits)")

---

Tags

laravellaravelquick-start

### Embed Badge

![Health badge](/badges/daltonmccleery-laravel-quick-start/health.svg)

```
[![Health](https://phpackages.com/badges/daltonmccleery-laravel-quick-start/health.svg)](https://phpackages.com/packages/daltonmccleery-laravel-quick-start)
```

###  Alternatives

[laravel/horizon

Dashboard and code-driven configuration for Laravel queues.

4.2k95.4M303](/packages/laravel-horizon)[laravel/sail

Docker files for running a basic Laravel application.

1.9k205.7M1.3k](/packages/laravel-sail)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M193](/packages/laravel-ai)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M149](/packages/laravel-mcp)[venturedrake/laravel-crm

A free open source CRM built as a package for laravel projects

43311.1k](/packages/venturedrake-laravel-crm)[laravel/surveyor

Static analysis tool for Laravel applications.

86121.4k11](/packages/laravel-surveyor)

PHPackages © 2026

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