| Server IP : 172.67.168.138 / Your IP : 216.73.216.227 [ Web Server : Apache System : Linux frog 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web13 ( 5017) PHP Version : 8.3.31 Disable Function : NONE Domains : 41 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client12/web13/web/ahelos/resources/views/layouts/backend/contacts/ |
Upload File : |
@extends('layouts.backend.index', ['module_title' => 'Контакти'])
@section('content')
@if(session('danger'))
<div class="alert alert-danger">
{!! session('danger') !!}
</div>
@endif
<div class="card">
<div class="card-body">
<table class="table table-sm">
<thead>
<tr>
<th colspan="2">Информация за контакт</th>
</tr>
</thead>
<tbody>
<tr>
<th width="20%">Имена</th>
<td>
{{ $contact->lname }} {{ $contact->fname }}
</td>
</tr>
<tr>
<th>Телефон</th>
<td>
{{ $contact->phone }}
</td>
</tr>
<tr>
<th>Email</th>
<td>
{{ $contact->email }}
</td>
</tr>
<tr>
<th>Съобщение</th>
<td>
{{ $contact->message }}
</td>
</tr>
<tr>
<th>Дата</th>
<td>
{{ $contact->created_at }}
</td>
</tr>
</tbody>
</table>
<a href="{{ route('contacts.index') }}" class="btn btn-md btn-default mt-4"><i class="fas fa-angle-double-left" aria-hidden></i> Назад</a>
</div>
</div>
@endsection