@extends('layouts.app') @section('content')
{{__('texte.filters_arr.show.name')}}: {{ $filter->name }}
{{__('texte.filters_arr.show.title')}}: {{ $filter->title }}
{{__('texte.filters_arr.show.type')}}: {{ __('texte.filter_types_arr')[$filter->type] }}
{{__('texte.filters_arr.show.active')}}: {{ $filter->active==1 ? __('texte.filters_arr.show.yes') : __('texte.filters_arr.show.no') }}
@if(count($filter->options)>0)
{{__('texte.filters_arr.show.options')}}: @foreach ($filter->options as $option) {{ $option->title }} @endforeach
@endif
@endsection