PHPackages                             dewsign/nova-blog - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. dewsign/nova-blog

ActivePackage[Utility &amp; Helpers](/categories/utility)

dewsign/nova-blog
=================

Blogging plugin for Laravel Nova

v1.3.6(6y ago)58373MITPHPPHP &gt;=7.0.0CI failing

Since Oct 12Pushed 6y ago2 watchersCompare

[ Source](https://github.com/dewsign/nova-blog)[ Packagist](https://packagist.org/packages/dewsign/nova-blog)[ RSS](/packages/dewsign-nova-blog/feed)WikiDiscussions master Synced today

READMEChangelog (6)Dependencies (9)Versions (46)Used By (0)

Blogging module for Laravel Nova
================================

[](#blogging-module-for-laravel-nova)

Easily add a Blog with Articles and Categories in Nova using repeaters blocks for content. See documentation for [Repeater Blocks](https://github.com/dewsign/nova-repeater-blocks) for details.

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

[](#installation)

`composer require dewsign/nova-blog`

Run the migrations

```
php artisan migrate
```

Load the tool in your NovaServiceProvider.php

```
public function tools()
{
    return [
        ...
        new \Dewsign\NovaBlog\Nova\NovaBlogTool,
        ...
    ];
}
```

Templates
---------

[](#templates)

The packages doesn't come with any pre-made templates. Simply replace the published views.

Configuration
-------------

[](#configuration)

### Repeaters

[](#repeaters)

Add additional repeater blocks by adding it to the nova blog config

```
'repeaters' => [
    'More\Repeaters'
],
```

Or remove all standard repeaters and use your own selection.

```
'replaceRepeaters' => true,
```

### Customisation

[](#customisation)

If you want more control, you can specify which Nova Resources and Models to use. Because of the way nova reads the model from a static variable you must provide your own custom resource if you want to use a custom model.

```
'models' => [
    'article' => 'App\Article',
],
'resources' => [
    'article' => 'App\Nova\Article',
],
```

### Nova Resource Group

[](#nova-resource-group)

```
'group' => 'Blog',
```

You can customise the nova resource group.

Routing
-------

[](#routing)

Blog, category and article routing is all included under the `/blog` slug.

Factories &amp; Seeders
-----------------------

[](#factories--seeders)

The package comes with pre-made factories and seeders. Should you wish to include them in your application simply call the seeder or use the factory provided.

```
// database/seeds/DatabaseSeeder.php

public function run()
{
    $this->call(Dewsign\NovaBlog\Database\Seeds\CategorySeeder::class);
    $this->call(Dewsign\NovaBlog\Database\Seeds\ArticleSeeder::class);
}
```

Permissions
-----------

[](#permissions)

A BlogPolicy is included, but not loaded by default, for [Brandenburg](https://github.com/Silvanite/brandenburg) / [Nova Tool](https://github.com/Silvanite/novatoolpermissions). Simply load the AuthServiceProvider from this package.

```
// config/app.php

'providers' => [
    ...
    Dewsign\NovaBlog\Providers\AuthServiceProvider::class,
],
```

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity69

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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

Recently: every ~7 days

Total

30

Last Release

2283d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/767ab4e0eedaace1862603a74f2c37f2ef7f72811855d4748a3b8d02f3ad81df?d=identicon)[dewsign](/maintainers/dewsign)

---

Top Contributors

[![m2de](https://avatars.githubusercontent.com/u/17720020?v=4)](https://github.com/m2de "m2de (52 commits)")[![crumb1e](https://avatars.githubusercontent.com/u/18497168?v=4)](https://github.com/crumb1e "crumb1e (51 commits)")[![kikoseijo](https://avatars.githubusercontent.com/u/1528668?v=4)](https://github.com/kikoseijo "kikoseijo (3 commits)")[![tristanward](https://avatars.githubusercontent.com/u/35340245?v=4)](https://github.com/tristanward "tristanward (3 commits)")

---

Tags

laravelblogarticlesnova

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/dewsign-nova-blog/health.svg)

```
[![Health](https://phpackages.com/badges/dewsign-nova-blog/health.svg)](https://phpackages.com/packages/dewsign-nova-blog)
```

###  Alternatives

[dillingham/nova-attach-many

Attach Many Nova field

2712.0M2](/packages/dillingham-nova-attach-many)[sbine/route-viewer

A Laravel Nova tool to view your registered routes.

57215.9k](/packages/sbine-route-viewer)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

14720.0k](/packages/markwalet-nova-modal-response)[stepanenko3/nova-cards

A Laravel Nova info cards.

33143.0k](/packages/stepanenko3-nova-cards)

PHPackages © 2026

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