@extends('layouts.admin') @push('title', get_phrase('Contact')) @push('meta')@endpush @push('css')@endpush @section('content')
@if (count($contacts) > 0)

{{ get_phrase('Showing') . ' ' . count($contacts) . ' ' . get_phrase('of') . ' ' . $contacts->total() . ' ' . get_phrase('data') }}

@foreach ($contacts as $key => $contact) @endforeach
@else @include('admin.no_data') @endif @if (count($contacts) > 0)

{{ get_phrase('Showing') . ' ' . count($contacts) . ' ' . get_phrase('of') . ' ' . $contacts->total() . ' ' . get_phrase('data') }}

{{ $contacts->links() }}
@endif
@endsection @push('js')@endpush