For more clarity in the code, moved the array of options to the controller itself.

This commit is contained in:
James Cole 2016-01-15 16:26:24 +01:00
parent 4f6a733238
commit 88839e9610

View File

@ -184,7 +184,7 @@ class CsvController extends Controller
$uploadPossible = is_writable(storage_path('upload'));
$path = storage_path('upload');
return view('csv.index', compact('subTitle', 'uploadPossible', 'path', 'specifix', 'accounts'));
return view('csv.index', compact('subTitle', 'uploadPossible', 'path', 'specifix', 'accounts', 'delimiters'));
}
/**