mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
4b0c4e621a
Also changed up how base URL setting was being done by manipulating incoming request URLs instead of altering then on generation.
18 lines
770 B
PHP
18 lines
770 B
PHP
<div>
|
|
<form action="{{ url("/settings/users/{$currentUser->id}/switch-${type}-view") }}" method="POST" class="inline">
|
|
{!! csrf_field() !!}
|
|
{!! method_field('PATCH') !!}
|
|
<input type="hidden" value="{{ $view === 'list'? 'grid' : 'list' }}" name="view_type">
|
|
@if ($view === 'list')
|
|
<button type="submit" class="icon-list-item text-primary">
|
|
<span class="icon">@icon('grid')</span>
|
|
<span>{{ trans('common.grid_view') }}</span>
|
|
</button>
|
|
@else
|
|
<button type="submit" class="icon-list-item text-primary">
|
|
<span>@icon('list')</span>
|
|
<span>{{ trans('common.list_view') }}</span>
|
|
</button>
|
|
@endif
|
|
</form>
|
|
</div> |