mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 10:33:30 +00:00
Fix issue in exporting.
This commit is contained in:
@@ -15,9 +15,10 @@
|
|||||||
<p>
|
<p>
|
||||||
{{ 'export_data_expl'|_ }}
|
{{ 'export_data_expl'|_ }}
|
||||||
</p>
|
</p>
|
||||||
<ul>
|
<form action="{{ route('export.export') }}" method="post">
|
||||||
<li><i class="fa fa-fw fa-download"></i> <a href="{{ route('export.export') }}" title="{{ 'export_data_all_transactions'|_ }}">{{ 'export_data_all_transactions'|_ }}</a></li>
|
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
||||||
</ul>
|
<button type="submit"><i class="fa fa-fw fa-download"></i> {{ 'export_data_all_transactions'|_ }}</button>
|
||||||
|
</form>
|
||||||
<p>
|
<p>
|
||||||
{{ 'export_data_advanced_expl'|_ }}
|
{{ 'export_data_advanced_expl'|_ }}
|
||||||
</p>
|
</p>
|
||||||
|
@@ -538,7 +538,7 @@ Route::group(
|
|||||||
|
|
||||||
// index
|
// index
|
||||||
Route::get('', ['uses' => 'Export\IndexController@index', 'as' => 'index']);
|
Route::get('', ['uses' => 'Export\IndexController@index', 'as' => 'index']);
|
||||||
Route::get('export', ['uses' => 'Export\IndexController@export', 'as' => 'export']);
|
Route::post('export', ['uses' => 'Export\IndexController@export', 'as' => 'export']);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user