@extends('layouts.admin') @section('extrastyle') @endsection @section('content')
Name | Address | Phone 1 | Opening | Closing | Type | Longitude | Latitude | Food Count | Created | Actions |
---|---|---|---|---|---|---|---|---|---|---|
{{ isset($place['name']) ? $place['name'] : "" }} | {{ isset($place['address']) ? $place['address'] : "" }} | {{ isset($place['phone']) ? $place['phone'] : "" }} | {{ isset($place['opening']) ? $place['opening'] : "" }} | {{ isset($place['closing']) ? $place['closing'] : "" }} | {{ isset($place['type']) ? $place['type'] : "" }} | {{ isset($place['location']) && isset($place['location']['coordinates']) ? $place['location']['coordinates'][0] : "" }} | {{ isset($place['location']) && isset($place['location']['coordinates']) ? $place['location']['coordinates'][1] : "" }} | {{-- @if(isset($place['delivery']) && $place['delivery']) @foreach($place['delivery'] as $delivery) {{ $delivery }} @endforeach @endif --}} {{ $place['food_count'] }} | {{ isset($place['created']) ? $place['created'] : "" }} | Edit Categories Add Food Update Food @if (Auth::user() && Auth::user()->super) Delete @endif |
@if(isset($place['food'])) @foreach($place['food'] as $food) {{ $food['name'] ?? '' }} - {{ $food['price'] ?? '' }} @endforeach @endif | ||||||||||
@foreach($place['tags'] as $tag) {{ $tag }} @endforeach | ||||||||||
No Places |