@extends('front.layout.master')
@section('main_content')
@php
$setting = App\Models\Setting::where('id',1)->first();
@endphp
@if($wishlist->count() > 0)
SL |
Photo |
Package |
Action |
@foreach($wishlist as $item)
1 |
|
{{ $item->package->name }}
|
|
@endforeach
@else
No Data Found
@endif
@endsection