@extends('dashboard.layouts.master') @section('title', __('backend.show_tourism_place')) @section('content')
| {{ __('backend.place_name') }} | {{ $place->name ?? '-' }} |
|---|---|
| {{ __('backend.category') }} | {{ $place->category->name ?? '-' }} |
| Interests |
@if($place->interests && $place->interests->count())
@foreach($place->interests as $interest)
{{ $loop->iteration }}. {{ $interest->name }} @endforeach @else - @endif |
| {{ __('backend.description') }} | {{ $place->description ?? '-' }} |
| {{ __('backend.ticket_price') }} ({{ $currency_symbol }}) | {{ $place->ticket_price ?? '-' }} |
| {{ __('backend.options') }} | |
| {{ __('backend.location') }} | {{ $place->address ?? '-' }} |
| {{ __('backend.images') }} | @if($place->images && $place->images->count() > 0) @else No images uploaded. @endif |
| {{ __('backend.status') }} | @if ($place->status == 1) Active @elseif($place->status == 0) Inactive @elseif($place->status == 2) Deleted @else - @endif |
| {{ __('backend.registration_date') }} | {{ $createDate }} |