Download the PHP package mrjuliuss/syntara-logviewer without Composer
On this page you can find all versions of the php package mrjuliuss/syntara-logviewer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package syntara-logviewer
Syntara Logviewer (Laravel 4 package)
A Logviewer for Syntara package, using Mikemand logviewer package

Features
- Views and delete Laravel4 logs
Requirements
- PHP 5.3+
Dependencies
Installation
In the require key of composer.json file add the following line
If your application uses Laravel 4.0 :
/!\ This branch is no longer maintained
If your application uses Laravel 4.1 :
Run the Composer update command
In app/config/app.php :
Add and to the end of the $providers array
'providers' => array(
'Illuminate\Foundation\Providers\ArtisanServiceProvider',
'Illuminate\Auth\AuthServiceProvider',
...
'Kmd\Logviewer\LogviewerServiceProvider',
'Mrjuliuss\SyntaraLogviewer\SyntaraLogviewerServiceProvider'
),
Launch install commands :
You can see logs here :
http://your-url/dashboard/logviewer
Custom Development
Add logviewer to the navbar
- If you already have a template for navigation : -> add to your template
@include('syntara-logviewer::navigation')
- else :
add to app/filters.php (or app/routes.php)
View::composer('syntara::layouts.dashboard.master', function($view)
{
$view->nest('navPages', 'syntara-logviewer::navigation');
});
A note about Laravel 4.1 (mikemand recommandation)
As of right now (2013-11-29), fresh Laravel 4.1 applications log things differently than they used to. While this doesn't technically break LogViewer, LogViewer also doesn't know how to handle these changes. Whether these changes are permanent or not is unclear, but here's a quick fix:
In your app/start/global.php
, line 34 change:
to:
This only applies to new installations of Laravel 4.1. If you've upgraded an existing 4.0 application (and did not make changes to the way logs are created and stored), everything should still work.
Others :
Please see Mikemand logviewer doc.
License
Syntara logviewer is released under the MIT License. See the licence file for details.