@extends('layouts.dashboard')
@section('css')
@endsection
@section('content')
@if (session('warning'))
@endif
@slot('table_header')
| # |
{{ __('Field Name') }} |
{{ __('Control') }} |
@endslot
@slot('table_body')
@foreach ($fields as $item)
| {{$num}} |
{{$item->field}} |
|
@endforeach
@endslot
@endsection
@section('js')
@endsection