@extends('layouts.admin') @push('title', get_phrase('Contact')) @push('meta')@endpush @push('css')@endpush @section('content')
{{ get_phrase('Showing') . ' ' . count($contacts) . ' ' . get_phrase('of') . ' ' . $contacts->total() . ' ' . get_phrase('data') }}
# | {{ get_phrase('Name') }} | {{ get_phrase('Contact') }} | {{ get_phrase('Message') }} | {{ get_phrase('Options') }} |
---|---|---|---|---|
{{ $key + 1 }} |
{{ $contact->name }}@if (!check_registered($contact->email)) {{ get_phrase('Not registered') }} @else {{ get_phrase('Registered') }} @endif |
{{ get_phrase('Email') }}: {{ $contact->email }} {{ get_phrase('Phone') }}: {{ $contact->phone }} {{ get_phrase('Address') }}: {{ $contact->address }} |
{{ $contact->message }} |
{{ get_phrase('Showing') . ' ' . count($contacts) . ' ' . get_phrase('of') . ' ' . $contacts->total() . ' ' . get_phrase('data') }}
{{ $contacts->links() }}