update version 1.0.2.1

This commit is contained in:
sujitprasad
2015-12-02 15:21:33 +05:30
parent 29c1cd1826
commit d7a77db621
46 changed files with 295 additions and 132 deletions

View File

@@ -78,7 +78,7 @@ class SettingsController extends Controller {
$companys = $company->whereId('1')->first();
if (Input::file('logo')) {
$name = Input::file('logo')->getClientOriginalName();
$destinationPath = 'dist';
$destinationPath = 'lb-faveo/dist/';
$fileName = rand(0000, 9999) . '.' . $name;
Input::file('logo')->move($destinationPath, $fileName);
$companys->logo = $fileName;