@php use \Illuminate\Support\Arr; @endphp @extends('layouts.app') @section('content') {{-- breadcrumb --}} @include('layouts.components.breadcrumb', [ 'title' => trans('app.show_custom-field_title'), 'first_list_item' => trans('app.custom-field'), 'last_list_item' => trans('app.show_custom-field') ]) {{-- end breadcrumb --}}
{{-- Show options if type is dropdown --}} @if ($customField->type === 'dropdown')
    @foreach (Arr::wrap($customField->options) as $option)
  • {{ $option }}
  • @endforeach
@endif
@endsection