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