@extends('layouts/contentLayoutMaster') @section('title', 'Wishlist') @section('content')

{{ __('locale.wishlist') }}

@if (!empty($wishlists)) @foreach($wishlists as $key => $data)
img-placeholder
@if ( Config::get('app.locale') == 'id') {{ $data['service_name'] }} @else {{ $data['service_name_en'] }} @endif

Rp. {{number_format($data['price'], 0, ',', '.')}}

/ {{ __('locale.hour') }}

@endforeach @else
{{ __('locale.wishlist_empty') }}
@endif
@endsection @section('page-script') {{-- Page js files --}} @endsection