lud/press

There is no license information available for the latest version (v0.8.0) of this package.

A simple publishing library

v0.8.0 2015-02-27 11:08 UTC

This package is auto-updated.

Last update: 2024-04-11 23:50:35 UTC


README

Press is a blogging library targeting Laravel 5 with a focus on blogging speed, with automagic pagination and page caching.

Code Climate

Routes sample config

<?php

\Press::SetRoutes();

Route::controllers([
	'auth' => 'App\Http\Controllers\Auth\AuthController',
]);

\Press::listRoute('tag/{tag}', 'tag|sort', ['as' => 'press.tag']);
\Press::listRoute('/', 'dir:articles|sort', ['as' => 'press.home', 'view' => '_::home']);