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

Show Form

@if (count($form) > 0)
@foreach ($form as $index => $item) @endforeach
# Name Email Subject Message
{{ $index + 1 }} {{ $item->name }} {{ $item->email }} {{ $item->subject }} {{ \Illuminate\Support\Str::limit($item->message, 50) }}
@else

Not Found any Form..

@endif
@endsection