@extends('layouts.app') @section('content')
@include('layouts.partials.breadcrumb', ['title' => $title])
@foreach ($fields as $key => $item)
@forelse ($item->dropdown as $dropKey => $dropItem) @empty @endforelse
SN Drop Value Alias Status Action
{{ $dropKey + 1 }} {{ $dropItem->title }} {{ $dropItem->alias }} {!! $dropItem->status_name !!}
No Record Found
@endforeach
Create Field
{{ html()->form('POST')->route('field.store')->class(['needs-validation'])->attributes(['novalidate'])->open() }}
{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Title')->required() }} {{ html()->div('Please enter title')->class('invalid-feedback') }}
{{ html()->form()->close() }}
@endsection @push('js') @endpush