@extends('website.layouts.master_top') @section('css') @endsection @section('content')

Your Favorite Services Is Over Here

Here is your last favorite services

@foreach ($wishlist as $item) @if ($item->status == 1) @php $text_color = 'not_accepted-color-btn'; $msg = __('Send'); @endphp @elseif ($item->status == 2) @php $text_color = 'pend-color-btn'; $msg = __('In progress'); @endphp @elseif ($item->status == 3) @php $text_color = 'done-color-btn'; $msg = __('Accept'); @endphp @elseif ($item->status == 4) @php $text_color = 'cancel-color-btn'; $msg = __('Not accept'); @endphp @elseif ($item->status == 5) @php $text_color = 'cancel-color-btn'; $msg = __('Canceled'); @endphp @endif @if ($item->itemable_type === "App\Models\Branch\Unit_offer") @php $img = $item->itemable->hotel->main_image; $service_url = "patient_auth.unit_package_show"; @endphp @elseif ($item->itemable_type === "App\Models\Branch\Unit") @php $img = $item->itemable->main_image; $service_url = "patient_auth.unit_show"; @endphp @elseif ($item->itemable_type === "App\Models\Branch\Trip") @php $img = $item->itemable->main_image; $service_url = "patient_auth.trip_show"; @endphp @elseif ($item->itemable_type === "App\Models\Branch\Package") @php $img = $item->itemable->main_image; $service_url = "patient_auth.package_show"; @endphp @elseif ($item->itemable_type === "App\Models\Branch\Visa") @php $img = $item->itemable->destination->image; $service_url = "patient_auth.visa_show"; @endphp @endif
@if($item->airline) @endif @if($item->transp) @endif @if($item->trip) @endif @if($item->guide) @endif @if($item->fav) @endif

{{ $item->itemable->name }}

{{ $item->itemable->name }}

{{ $item->itemable->short_description }}

@if ($item->itemable_type !== "App\Models\Branch\Unit") {{ $item->itemable->lowest }} @endif

Lowest Price for a person

@endforeach
@endsection @section('js') @endsection