krafthaus / bauhaus

Laravel 4 Admin Generator
http://bauhaus.krafthaus.nl/
GNU General Public License v2.0
1 stars 0 forks source link

FileField bug? #44

Closed mvaello closed 9 years ago

mvaello commented 9 years ago

I am getting some errors with the last commit. The log error: **/vendor/krafthaus/bauhaus/src/KraftHaus/Bauhaus/Field/FileField.php:92

The file uploading stops working :( . I am using the interface in this way :
$mapper->file('file')->location('public/uploads/images')->naming('random');

thatonefreeman commented 9 years ago

Hello, I ran into this issue as well. Add the following line: "use Illuminate\Support\Facades\View;"

to vendor/krafthaus/bauhaus/src/KraftHaus/Bauhaus/Field/FileField.php

I made a pull request with this change.

mvaello commented 9 years ago

Thanks @thatonefreeman.