Laravel Community Tools by Tighten
Laravel Nova icon Nova Packages
This package is possibly abandoned. Please proceed with care.

Installation Instructions

You can install the package in to a Laravel app that uses Nova via composer:

composer require mattmangoni/nova-blogify-tool

Next, you must register the card with Nova. This is typically done in the tools method of the NovaServiceProvider.

// in app/Providers/NovaServiceProvder.php

// ...
public function tools()
{
    return [
        // ...

        new \Mattmangoni\NovaBlogifyTool\NovaBlogifyTool()
}

Readme

Nova Blogify Tool

Latest Stable Version Total Downloads StyleCI

Description

This tool will create a simple blogging system inside Laravel Nova in just one click. It currently features Category and Post resources, complete with a migration and rollback tool.

In the future I plan to add tags and other custom fields as well.

Our Next Steps

  • Make the entire content configurable
  • Enhance post resource and migration
  • Add tag system

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require mattmangoni/nova-blogify-tool

Next, you must register the card with Nova. This is typically done in the tools method of the NovaServiceProvider.

// in app/Providers/NovaServiceProvder.php

// ...
public function tools()
{
    return [
        // ...

        new \Mattmangoni\NovaBlogifyTool\NovaBlogifyTool()
}

How to use the blog content in your applications

use Mattmangoni\NovaBlogifyTool\Models\Post;
use Mattmangoni\NovaBlogifyTool\Models\Category;

Route::get('/', function () {
    return view('welcome');
});

Route::get('/posts', function () {
    return Post::all();
});

Route::get('/categories', function () {
    return Category::all();
});
Back to Top
Added 7 years ago
Last updated 7 Years Ago
Version v0.6.5
Composer
mattmangoni/nova-blogify-tool
GitHub stars 22
Packagist downloads 1,683

Favorites

3 users favorited

Rating

5.00
(out of 5)
★★★★★
★★★★
★★★
★★
3 ratings

Brought to you by Tighten

Issues/Feature Requests Stats Package Ideas