@extends('layouts.base') @section('stylesheets') @endsection @section('content')
@csrf
{{-- --}}
{{--
--}} {{--
--}} {{-- --}} {{-- --}}
@if(isset($place) && isset($place['image'])) @foreach($place['image'] as $image) @endforeach @endif
{{-- --}} {{--

Add new

--}}
{{-- --}} {{-- --}}
Type of Place
@php $types = [ 'restaurant' => 'Restaurant', 'mamaput' => 'Mama Put', 'bar' => 'Bar', 'streetfood' => 'Street Food', 'fastfood' => 'Fast Food', 'hotel' => 'Hotel', 'eatery' => 'Eatery', 'cafe' => 'Cafe' ] @endphp @foreach($types as $key => $type) @php $in = (isset($place) && isset($place['type'])) && $key === $place['type'] ? 'checked' : ''; @endphp
@endforeach
@php $cats = [ 'african' => 'African', 'continental' => 'Continental', 'chinese' => 'Chinese', 'indian' => 'Indian', 'fast-food' => 'FastFood', 'breakfast' => 'Breakfast', 'seafood' => 'Seafood', 'coffee' => 'Coffee', 'vegetarian' => 'Vegetarian', 'finedining' => 'FineDining', 'healthy' => 'Healthy', 'grill' => 'Grill', 'parking' => 'Parking', 'seating' => 'Seating', 'delivery' => 'Delivery' ] @endphp
Attributes (select all that fit)
@foreach($cats as $key => $cat) @php $in = (isset($place) && isset($place['tags'])) && in_array($key, (array) $place['tags']) ? 'checked' : ''; @endphp
@endforeach


@php $areas = ["Apapa", "Festac Town", "Gbagada", "Ikeja", "Ikoyi", "Ilupeju", "Lagos Island", "Ajah", "Lekki", "Magodo", "Isolo", "Satellite Town", "Surulere", "Victoria Island", "VGC", "Chevron", "Ikate", "Agungi", "Opebi", "Alausa", "Akoka", "Okota", "Ebute Metta", "Yaba", "Oregun", "Oshodi", "Maryland", "Mainland", "Island", "Lagos"] @endphp
@isset ($food)
Click on a food item to edit it

@foreach ($food as $f) @endforeach @endisset
@endsection @section('footer') @endsection @section('admin') @endsection @section('javascript') @parent @endsection