| Package Data | |
|---|---|
| Maintainer Username: | vovanmix | 
| Maintainer Contact: | guille_55_88@hotmail.com (Guillermo M.) | 
| Package Create Date: | 2015-09-04 | 
| Package Last Update: | 2015-09-04 | 
| Home Page: | |
| Language: | JavaScript | 
| License: | MIT | 
| Last Refreshed: | 2025-11-04 03:02:06 | 
| Package Statistics | |
|---|---|
| Total Downloads: | 237 | 
| Monthly Downloads: | 0 | 
| Daily Downloads: | 0 | 
| Total Stars: | 2 | 
| Total Watchers: | 1 | 
| Total Forks: | 0 | 
| Total Open Issues: | 0 | 
#Filemanager for Laravel 4 Based on https://github.com/simogeo/Filemanager
##Requires
"intervention/image": "2.*"
##Installation
Edit your composer.json.
"require": {
	"vovanmix/filemanager-laravel4-s3": "1.*"
}
Run
composer update
Add to your file app.php if you ant to use S3:
'Vovanmix\FilemanagerLaravel4S3\FilemanagerLaravelS3ServiceProvider',
For store file locally:
'Vovanmix\FilemanagerLaravel4S3\FilemanagerLaravelServiceProvider',
Add in routes.php
Route::group(array('before' => 'auth'), function(){
	Route::controller('filemanager', 'FilemanagerLaravelController');
});
Copy your filemanager folder to public
php artisan asset:publish --path="vendor/Vovanmix/filemanager-laravel4-s3/public" "../"