{{-- {{ $tour->status == 1 ? 'Published' : 'Unpublished' }} | --}}
{{ $tour->bokun_id }} |
{{ $tour->bokun_title }} |
{{ $tour->name }} |
{{ $tour->groups->pluck('name')->implode(', ') }} |
{{ $tour->time }} |
{{ $tour->guide_free }} |
{{ $tour->duration }} |
{{ $tour->city->eng_name ?? 'N/A' }} |
{{ $tour->tourTypes->pluck('name')->implode(', ') }} |
{{ $tour->managers->pluck('name')->join(', ') }} |
View
@if($tour->status)
@can('tour-edit')
Edit
@endcan
@can('tour-delete')
@endcan
@endif
@can('tour-published-unpublished')
@endcan
|
@empty