@extends('panel.layout.master' , ['title' => 'الردود' ]) @section('content_head')

الردود

@endsection @section('content') @if($contact->replies->count())
@foreach($contact->replies as $reply)

الرد

{!! $reply->message !!}
{{ $reply->created_at->format('Y-m-d') }}
@endforeach
@else
لا يوجد ردود
@endif @endsection