2018-12-01 21:28:17 +01:00
|
|
|
<div>
|
2022-11-09 20:30:08 +01:00
|
|
|
<form action="{{ url("/preferences/change-view/" . $type) }}" method="POST" class="inline">
|
2023-12-10 13:37:21 +01:00
|
|
|
{{ csrf_field() }}
|
|
|
|
{{ method_field('patch') }}
|
|
|
|
<input type="hidden" name="_return" value="{{ url()->current() }}">
|
2022-11-09 20:30:08 +01:00
|
|
|
|
2018-12-07 19:33:32 +01:00
|
|
|
@if ($view === 'list')
|
2023-01-28 17:06:11 +01:00
|
|
|
<button type="submit" name="view" value="grid" class="icon-list-item text-link">
|
2018-12-01 21:28:17 +01:00
|
|
|
<span class="icon">@icon('grid')</span>
|
|
|
|
<span>{{ trans('common.grid_view') }}</span>
|
2019-02-16 16:05:18 +01:00
|
|
|
</button>
|
2018-12-01 21:28:17 +01:00
|
|
|
@else
|
2023-01-28 17:06:11 +01:00
|
|
|
<button type="submit" name="view" value="list" class="icon-list-item text-link">
|
2023-12-10 13:37:21 +01:00
|
|
|
<span class="icon">@icon('list')</span>
|
2018-12-01 21:28:17 +01:00
|
|
|
<span>{{ trans('common.list_view') }}</span>
|
2019-02-16 16:05:18 +01:00
|
|
|
</button>
|
2018-12-01 21:28:17 +01:00
|
|
|
@endif
|
|
|
|
</form>
|
|
|
|
</div>
|