@extends('layouts.master') @section('title') Search For {{ request()->get('keyword') ?? '' }} @endsection @section('content')

Search For {{ request()->get('keyword') ?? ''}}

Search Result in Offers Booking [{{ $offerBookings->total() }}]

@foreach($offerBookings as $key => $value) status == 1) class="table-active" @endif> @endforeach
# Offer Service Name Phone Email Status Admin Notes Creation Date Action
{{ $key + 1 }} {{ $value->service_offer->title }}

{{ $value->service_offer->price }} SR

{{ $value->service_offer->servicenameLabel }} {{ $value->name }} {{ $value->phone }} @if($value->email != null) {{ $value->email }} @else Not Found Mail @endif @if($value->status == 2) {{ $value->statusLabel }} @elseif($value->status == 3) {{ $value->statusLabel }} @else {{ $value->statusLabel }} @endif @if($value->admin_comment != null) {{ $value->admin_comment }} @else No Comment Yet @endif {{ \Carbon\Carbon::parse($value->created_at)->isoFormat('Do MMMM YYYY') }}
{{ $offerBookings->appends(request()->query())->links('pagination::bootstrap-4') }}

Search Result in Service Booking [{{ $serviceContacts->total() }}]

@foreach($serviceContacts as $key => $value) status == 1) class="table-active" @endif> @endforeach
# Service Name Phone Email Subject Message Status Admin Notes Creation Date Action
{{ $key + 1 }} {{ $value->service->title }} {{ $value->name }} {{ $value->phone }} @if($value->email != null) {{ $value->email }} @else Not Found Mail @endif {{ $value->subject }} {{ $value->message }} @if($value->status == 2) {{ $value->statusLabel }} @elseif($value->status == 3) {{ $value->statusLabel }} @else {{ $value->statusLabel }} @endif @if($value->admin_comment != null) {{ $value->admin_comment }} @else No Comment Yet @endif {{ \Carbon\Carbon::parse($value->created_at)->isoFormat('Do MMMM YYYY , hh:mm A') }}
{{ $serviceContacts->appends(request()->query())->links('pagination::bootstrap-4') }}

Search Result in Pages Shopping Tools [{{ $leads->total() }}]

@foreach($leads as $key => $value) status == 1) class="table-active" @endif> @endforeach
# Name Phone Email Page Name Status Admin Notes Creation Date Action
{{ $key + 1 }} {{ $value->name }} {{ $value->phone }} @if($value->email != null) {{ $value->email }} @else Not Found Mail @endif {{ $value->page_name }} @if($value->status == 2) {{ $value->statusLabel }} @elseif($value->status == 3) {{ $value->statusLabel }} @else {{ $value->statusLabel }} @endif @if($value->admin_comment != null) {{ $value->admin_comment }} @else No Comment Yet @endif {{ \Carbon\Carbon::parse($value->created_at)->isoFormat('Do MMMM YYYY , hh:mm A') }}
{{ $leads->appends(request()->query())->links('pagination::bootstrap-4') }}

Search Result in Muharikat Booking [{{ $Muharikatleads->total() }}]

@foreach($Muharikatleads as $key => $value) status == 1) class="table-active" @endif> @endforeach
# Name Phone Email Type Chosen Status Admin Notes Creation Date Action
{{ $key + 1 }} {{ $value->name }} {{ $value->phone }} @if($value->email != null) {{ $value->email }} @else Not Found Mail @endif {{ $value->interested_in }} @if( $value->muharikat_offer_id != null) {{ $value->offer->title }}

{{ $value->price }} SR

@elseif( $value->muharikat_service_id != null) {{ $value->service->title }} @endif
@if($value->status == 2) {{ $value->statusLabel }} @elseif($value->status == 3) {{ $value->statusLabel }} @else {{ $value->statusLabel }} @endif @if($value->admin_comment != null) {{ $value->admin_comment }} @else No Comment Yet @endif {{ \Carbon\Carbon::parse($value->created_at)->isoFormat('Do MMMM YYYY , hh:mm A') }}
{{ $Muharikatleads->appends(request()->query())->links('pagination::bootstrap-4') }}
@endsection