@extends('layouts.dashboard') @section('title',trans('layout.custom_menu')) @section('css') @endsection @section('main-content')

{{trans('layout.restaurant')}}

{{trans('layout.your_restaurant')}}

@csrf

{{$restaurant->name}}

{{trans('Basic Info')}}
{{trans('layout.cover')}}
image
{{trans('Html allowed')}}
@if($restaurant->custom_menus->isNotEmpty()) @foreach($restaurant->custom_menus as $key=>$menu)
Menu {{$key+1}}
Upload PDF or image
@php $tempArr=explode('.',$menu->image); $extension=end($tempArr) @endphp @if($extension=='pdf') @else image @endif
@endforeach @else
Menu 1
Upload PDF or image

Drag & Drop Image or PDF

@endif
@endsection @section('js') @endsection