2017 © Pedro Peláez
 

library cms

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

image

niku-solutions/cms

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  • Friday, April 20, 2018
  • by nickkuijpers
  • Repository
  • 6 Watchers
  • 32 Stars
  • 364 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 100 Versions
  • 9 % Grown

The README.md

Laravel Post Manager

Latest Stable Version Latest Unstable Version License Monthly Downloads, (*1)

A API based codeable post manager for Laravel with custom fields. Extendable as you wish. Based on the API request, you will receive the post type configurations in a way where you can build your front-end with. We will take care of the CRUD functionality with support of taxonomies, media management and post meta., (*2)

We use our package internally in our projects to remove the need of basic post management. We are now able to setup advanced dashboard functionality for all type of post data like Pages, Posts, Products and whatever post type or category you require. You can add or remove custom fields in no time with no need to touch the database as the package does that automatically for you and save the data and shows it to you when displaying the editting form., (*3)

We are working on a decoupled front-end package in Vue.js and Axios which makes it possible to interact with the API in your Laravel project or Single Page Application., (*4)

Features

  • Custom post types
  • Configuration pages
  • Taxonomies like categories
  • Media manager with upload functionality and management
  • Repeating custom field groups
  • Custom fields
  • Validation rules for custom fields
  • Conditional custom fields based on template selection
  • Easy default user authentication based on if a user is logged in
  • Possibility to let users only view their own posts
  • Menu management support, you will need our front-end package for that.

Installation

Install the package via composer:, (*5)

composer require niku-solutions/cms

Register the following class into the 'providers' array in your config/app.php, (*6)

Niku\Cms\CmsServiceProvider::class,

Register the following middleware to whitelist your post types and config groups in the route files. You dont have to do anything further with this as we use this in our provider to secure the api routes of the post manager., (*7)

use Niku\Cms\Http\Middlewares\WhitelistPostTypesMiddleware;
use Niku\Cms\Http\Middlewares\WhitelistConfigGroupsMiddleware;

protected $routeMiddleware = [
    ...
    'posttypes' => WhitelistPostTypesMiddleware::class,
    'groups' => WhitelistConfigGroupsMiddleware::class,
    ...
];

You need to run the following artisan command to publish the required config file to register your post types., (*8)

php artisan vendor:publish --tag=niku-config

If you run the following vendor publish, you will receive a example set of post types to use, (*9)

php artisan vendor:publish --tag=niku-posttypes

Migrate the database tables by running:, (*10)

php artisan migrate

Usage

Before you are able to use the post types, you need to whitelist and setup the required custom fields and templates in the config/niku-cms.php file., (*11)

return [
    'post_types' => [

        // Default
        'attachment' => App\Cms\PostTypes\Attachment::class,

        // CMS
        'page' => App\Cms\PostTypes\Pages::class,
        'posts' => App\Cms\PostTypes\Pages::class,
        'posts-category' => App\Cms\PostTypes\PostsCategory::class,

    ],

    'config_types' => [

        // Registering the single config page
        'defaultsettings' => App\Cms\ConfigTypes\DefaultSettings::class,        

    ];

You can register the routes by pasting the following method in your route file. You can add middlewares like you would normally do to secure the routes with authentication etc. The post_type in the registed routes are variable but secured by a parameter in the method, so by default no api requests are enabled., (*12)

To enable the API routes, you need to register the names of the post types you would like to use as you see in the 'register_post_types' array key below. When registering a post type, you fill in the name of the array key in the config/niku-cms.php file. For more information about the config, read on., (*13)

If you for example have 2 user roles which have to communicate to the same post type but require different permissions, you can create 2 config files where the normal user account can only view their own posts, and the superadmin can view all of the users their posts. You do that by naming the array key of the config/niku-cms.php unique and creating 2 config files where the '$identifier' is pointed to the same 'post_type'., (*14)

Niku\Cms\Cms::postTypeRoutes([
    'register_post_types' => [
        'posts',
        'superadminposts',
    ],
]);

// Registering the routes for config pages
Niku\Cms\Cms::postTypeRoutes([
    'register_groups' => [
        'defaultsettings',      
    ],
]);

For each post type registered, you can set up default data and custom fields. You can add validations to the validation array key of the custom field you insert. All Laravel validation rules will be supported as it will only pass it thru to the validator class., (*15)

namespace App\Cms\PostTypes;

use Niku\Cms\Http\NikuPosts;

class Pages extends NikuPosts
{
    // The label of the custom post type
    public $label = 'Pages';

    // Custom post type identifer
    public $identifier = 'page';

    // Users can only view their own posts when this is set to true
    public $userCanOnlySeeHisOwnPosts = false;    

    public $config = [

    ];

    // Setting up the template structure
    public $templates = [
        'default' => [
            'customFields' => [
                'post_content' => [
                    'component' => 'niku-cms-text-customfield',
                    'label' => 'Text',
                    'value' => '',
                    'validation' => 'required',
                ],
                'author' => [
                    'component' => 'niku-cms-text-customfield',
                    'label' => 'Author',
                    'validation' => 'required',
                ],
                // more custom fields
            ],
        ],
    ];

}

Do you want to change the custom fields displayed based on the template? You can add multiple views which are selectable in the frontend for the end user and change the visible custom fields., (*16)

public $templates = [
    'default' => [
        'label' => 'Default page',
        'template' => 'default',
        'customFields' => [
            'text' => [
                'component' => 'niku-cms-text-customfield',
                'label' => 'Text',
                'value' => '',
                'validation' => 'required',
            ]
        ]
    ],
    'sidebar' => [
        'label' => 'Sidebar layout',
        'template' => 'sidebar-layout',
        'customFields' => [
            'text' => [
                'component' => 'niku-cms-text-customfield',
                'label' => 'Text',
                'value' => '',
                'validation' => 'required',
            ]
        ]
    ],
];

Blog

If you want a blog like method, you can do the following., (*17)

Enable the following type in your routes/web.php., (*18)

Route::get('blog', 'BlogController@blog');
Route::get('blog/{slug}', 'BlogController@singleBlog');

Next you enable the required methods in the controller., (*19)

public function blog()
{
    $posts = Posts::where([
        ['status', '=', '1'],
        ['post_type', '=', 'post']
    ])->with('postmeta')->get();
    return view('static.blog', compact('posts'));
}

And then in your view, you do the following. This syntax will be recreated in the future to make it more fluent but for now it works., (*20)

@foreach($posts as $post)
    <div class="row">
        @if(!empty($post->getMeta('image')))
            <?php
            $image = json_decode($post->getMeta('image'));
            $image = $image->url;
            ?>
            <div class="col-md-3">
                <img src="{{ $image }}" class="img-responsive">
            </div>
        @endif
        <div class="col-md-8">
            <h2>{{ $post->post_title }}</h2>
            <p>{!! $post->getMeta('excerpt') !!}</p>
            <br/>
            <a class="btn btn-default" href="/blog/{{ $post->post_name }}">Read more</a>
        </div>
    </div>
@endforeach

Switching templates

If you have enabled more than 1 post type template in the config/niku-cms.php, you will see a option appear in the backend to switch between templates. When you have selected one template, you can switch views in the frontend like this., (*21)

@extends('static.layouts.' . $posts->template)

API

To retrieve the base structure of your post type, you can request the following post API where the value is 0. This means we creating a new post. The result of this request will give you the structure of what you have inserted in the config file. With this data you can build the front-end of your page to automaticly create the input fields of the create form., (*22)

You will trigger this API on initialisation of the page where you want to create a new post item. (/superadmin/pages/create)., (*23)

POST /your-prefix/{post_type}/show/0
{
  "post": {
    "template": "default"
  },
  "postmeta": [],
  "templates": {
    "default": {
      "customFields": {
        "text": {
          "component": "niku-cms-text-customfield",
          "label": "Text",
          "value": "",
          "validation": "required",
          "id": "text"
        },
        "PostMultiselect": {
          "component": "niku-cms-posttype-multiselect",
          "label": "Post multiselect",
          "post_type": [
            "page"
          ],
          "validation": "required",
          "id": "PostMultiselect"
        },
        "periods": {
          "component": "niku-cms-repeater-customfield",
          "label": "Perioden",
          "validation": "required",
          "customFields": {
            "label": {
              "component": "niku-cms-text-customfield",
              "label": "Label",
              "value": "",
              "validation": ""
            },
            "boolean": {
              "component": "niku-cms-boolean-customfield",
              "label": "Boolean button",
              "value": "",
              "validation": ""
            }
          },
          "id": "periods"
        }
      }
    }
  },
  "config": []
}

Extending the custom fields and defining your own

You can create your own custom fields by using the registered component identifier to identify which Vue component you need to show. This information will be attached to the API request when requesting the following API;, (*24)

'text' => [
    'component' => 'niku-cms-text-customfield',
    'label' => 'Text',
    'value' => '',
    'validation' => 'required',
],

Registrate your component with they key you define in the post type config., (*25)

Vue.component('niku-cms-text-customfield', require('./components/customFields/text.vue'));

And for example use the following code structure, (*26)

<template>
    <div class="form-group">
        <label for="post_name" class="col-sm-3 control-label">{{ data.label }}:</label>
        <div class="col-sm-9">
            <input type="text" name="{{ data.id }}" v-model="input" class="form-control" value="{{ data.value }}">
        </div>
    </div>
</template>
<script>
export default {
    data () {
        return {
            'input': '',
        }
    },
    props: {
        'data': ''
    },
    ready () {
    }
}
</script>

Security Vulnerabilities

If you find any security vulnerabilities, please send a direct e-mail to Nick Kuijpers at n.kuijpers@niku-solutions.nl., (*27)

License

The MIT License (MIT). Please see MIT license for more information., (*28)

The Versions

20/04 2018

3.2.80

3.2.80.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

16/04 2018

3.2.79

3.2.79.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

12/04 2018

3.2.78

3.2.78.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

12/04 2018

3.2.77

3.2.77.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

12/04 2018

3.2.76

3.2.76.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

09/04 2018

dev-master

9999999-dev

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

09/04 2018

3.2.75

3.2.75.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

04/04 2018

3.2.74

3.2.74.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

04/04 2018

3.2.73

3.2.73.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

04/04 2018

3.2.72

3.2.72.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

03/04 2018

3.2.71

3.2.71.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

03/04 2018

3.2.70

3.2.70.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

03/04 2018

3.2.69

3.2.69.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

03/04 2018

3.2.68

3.2.68.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

30/03 2018

3.2.67

3.2.67.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

29/03 2018

3.2.66

3.2.66.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

28/03 2018

3.2.65

3.2.65.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/03 2018

3.2.63

3.2.63.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

24/03 2018

3.2.61

3.2.61.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

24/03 2018

3.2.62

3.2.62.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

24/03 2018

3.2.64

3.2.64.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

24/03 2018

3.2.6

3.2.6.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

23/03 2018

3.2.5

3.2.5.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

22/03 2018

3.2.4

3.2.4.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

20/03 2018

3.2.3

3.2.3.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

20/03 2018

3.2.2

3.2.2.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

19/03 2018

3.2.1

3.2.1.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

19/03 2018

3.2.0

3.2.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

17/03 2018

3.1.9

3.1.9.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

15/03 2018

3.1.7

3.1.7.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

14/03 2018

3.1.8

3.1.8.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

14/03 2018

3.1.6

3.1.6.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

14/03 2018

3.1.5

3.1.5.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

13/03 2018

3.1.4

3.1.4.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

13/03 2018

3.1.3

3.1.3.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

26/02 2018

2.5.94

2.5.94.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

26/02 2018

2.5.93

2.5.93.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

26/02 2018

2.5.92

2.5.92.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

26/02 2018

2.5.91

2.5.91.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

26/02 2018

2.5.9

2.5.9.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

26/02 2018

3.1.1

3.1.1.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

26/02 2018

3.1.2

3.1.2.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

26/02 2018

3.1.0

3.1.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/02 2018

2.6.7

2.6.7.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/02 2018

2.7.0

2.7.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/02 2018

3.0

3.0.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/02 2018

2.6.5

2.6.5.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/02 2018

2.6.6

2.6.6.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/02 2018

2.6.45

2.6.45.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/02 2018

2.6.21

2.6.21.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/02 2018

2.6.3

2.6.3.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

25/02 2018

2.6.4

2.6.4.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

23/02 2018

2.6.01

2.6.01.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

23/02 2018

2.6.2

2.6.2.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

23/02 2018

2.5.991

2.5.991.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

23/02 2018

2.6

2.6.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

22/02 2018

2.5.98

2.5.98.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

22/02 2018

2.5.99

2.5.99.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

22/02 2018

2.5.97

2.5.97.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

22/02 2018

2.5.96

2.5.96.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

22/02 2018

2.5.95

2.5.95.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

21/02 2018

2.5.8

2.5.8.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

20/02 2018

2.5.7

2.5.7.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

20/02 2018

2.5.6

2.5.6.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

20/02 2018

2.5.5

2.5.5.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

20/02 2018

2.5.4

2.5.4.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

20/02 2018

2.5.3

2.5.3.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

16/02 2018

2.5.2

2.5.2.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

16/02 2018

2.5.1

2.5.1.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

16/02 2018

2.5.0

2.5.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

15/02 2018

2.4.2

2.4.2.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

15/02 2018

2.4.1

2.4.1.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

15/02 2018

2.4.0

2.4.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

14/02 2018

2.3.4

2.3.4.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

13/02 2018

2.3.3

2.3.3.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

12/02 2018

2.3.2

2.3.2.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

12/02 2018

2.3.1

2.3.1.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

08/02 2018

2.3.0

2.3.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

02/02 2018

2.2.9

2.2.9.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

01/02 2018

2.2.8

2.2.8.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

31/01 2018

2.2.7

2.2.7.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

28/01 2018

2.2.5

2.2.5.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

28/01 2018

2.2.6

2.2.6.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

12/01 2018

2.2.4

2.2.4.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

10/01 2018

2.2.3

2.2.3.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

10/01 2018

2.2.2

2.2.2.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

10/01 2018

2.2.1

2.2.1.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

10/01 2018

2.2.0

2.2.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

01/12 2017

2.1.4

2.1.4.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

30/11 2017

2.1.3

2.1.3.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

28/11 2017

2.1.2

2.1.2.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

28/11 2017

2.1.1

2.1.1.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

28/11 2017

2.1.0

2.1.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

16/11 2017

1.2.2

1.2.2.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

13/11 2017

2.0.8

2.0.8.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

13/11 2017

2.0.3

2.0.3.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

13/11 2017

2.0.1

2.0.1.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

18/10 2017

2.0.0

2.0.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

11/05 2017

1.2.1

1.2.1.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager

26/04 2017

1.2

1.2.0.0

A codeable and flexible custom post type manager for Laravel with custom fields. Extendable and as dynamic as you wish.

  Sources   Download

MIT

The Requires

 

by Nick Kuijpers

laravel cms laravel post manager laravel page manager