Merge branch 'hotfix/license-clone' into develop

# Conflicts:
#	app/Http/Controllers/ReportsController.php
This commit is contained in:
snipe
2016-09-14 19:08:06 -07:00
3 changed files with 5 additions and 4 deletions
+2 -1
View File
@@ -792,7 +792,8 @@ class LicensesController extends Controller
->with('supplier_list', $supplier_list)
->with('license', $license)
->with('maintained_list', $maintained_list)
->with('company_list', $company_list);
->with('company_list', $company_list)
->with('manufacturer_list', Helper::manufacturerList());
}
+2 -2
View File
@@ -109,8 +109,8 @@ class ReportsController extends Controller
'model.manufacturer',
'company'
)
->orderBy('created_at', 'DESC')
->get();
->orderBy('created_at', 'DESC')
->get();
return View::make('reports/asset', compact('assets'))->with('settings', $settings);
}