@extends('layouts.dashboard') @section('title',trans('layout.restaurant').' | '.$restaurant->name) @section('css') @endsection @section('main-content')
@if($restaurant->cover_image)
@endif

{{$restaurant->name}}

{!! clean($restaurant->description) !!}

@foreach($categories as $categoryName=>$categoryItems)
@foreach($categoryItems as $item)
{{$item->name}}
@endforeach
@endforeach
@endsection @section('js') @endsection