@extends('dashboard.layout.app') @section('style') @endsection @section('content') @include('dashboard.blocks.title',['button' => true, 'route' =>route('users.create'), 'icon' => 'plus'])
{{__('translation.clear search result')}}

{{__('translation.result_count')}} ({{$rows->count()}})

Export to Excel
@php $i = 1; @endphp @foreach($rows as $item) @endforeach
# الاسم الجوال البريد الاكتروني الخدمة الرسالة الحالة
{{$i++}} {{$item->name}} {{$item->phone}} {{$item->email}} {{$item->Service->title ?? ''}} {{$item->message}} {!!Form::model($item , ['url' => ['/dashboard/contacts/'.$item->id] , 'method' => 'PATCH','files'=>true]) !!} {!! Form::select("status",c_statusList(),null,['class'=>"form-control select2 ", 'onchange' => '$(this).closest("form").submit()', 'style' =>"width: 100%; display: inline-block;"])!!} {!!Form::close() !!}
{{ $rows->appends($search)->links() }}
@endsection @section('script') @endsection