@extends('Layouts.adminLayout') @section('title') {{__('List Contact')}} @endsection @section('css') @endsection @section('breadcrumb')
@endsection @section('content')
@php $i=1; @endphp @foreach($data['Contacts'] as $value) @endforeach
{{__('Index')}} {{__('Title')}} {{__('Full Name')}} {{__('Date')}} {{__('Email')}} {{__('Possibilities')}}
{{$i++}} {{$value->subject}} {{$value->fullname}} {{timestampDateDay($value->created_at,true)['date']}} {{$value->email}}
@endsection @section('script') @endsection