@extends('layouts.app') @section('content')

{{__('texte.filters_arr.show.show_filter')}}

{{__('texte.filters_arr.show.name')}}: {{ $filter->name }}
{{__('texte.filters_arr.show.title')}}: {{ $filter->title }}
{{__('texte.filters_arr.show.type')}}: {{ App\Filter::TYPES[$filter->type] }}
{{__('texte.filters_arr.show.active')}}: {{ App\Model::ACTIVE[$filter->active] }}
{{__('texte.filters_arr.show.options')}}: @foreach ($filter->options as $option) {{ $option->title }} @endforeach
{{__('texte.filters_arr.show.models')}}: @foreach ($filter->models as $modelId) @endforeach
@endsection