Package Data | |
---|---|
Maintainer Username: | lud |
Maintainer Contact: | ludovic@demblans.com (lud) |
Package Create Date: | 2015-03-06 |
Package Last Update: | 2015-09-29 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-11 15:02:21 |
Package Statistics | |
---|---|
Total Downloads: | 23 |
Monthly Downloads: | 1 |
Daily Downloads: | 1 |
Total Stars: | 0 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Press is a blogging library targeting Laravel 5 with a focus on blogging speed, with automagic pagination and page caching.
<?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']);