@extends('layouts.app') @section('css') @endsection @section('content')
{!! \App\Restaurants::whereNull('deleted_at')->count() !!} Restaurants!
{!! \App\Recipes::whereNull('deleted_at')->count() !!} Recipes!
11 New Reviews!
Recent Restaurants
{{-- --}} {{-- --}} @php $restaurants = \App\Restaurants::whereNull('deleted_at')->limit(10)->orderBy('created_at','DESC')->get(); @endphp @if(isset($restaurants) && $restaurants->count() > 0) @foreach($restaurants as $restaurant) {{-- --}} {{-- --}} @endforeach @endif
Resto Resto NameShort DescriptionAddressPhoneTotal Recipe Action? Action
@if(isset($restaurant->photos)) @else @endif {!! $restaurant->name !!} {!! $restaurant->short_description !!}{!! nl2br($restaurant->address) !!}{!! $restaurant->phone !!}{!! isset($restaurant->recipes)?$restaurant->recipes->count():0 !!} {!! $restaurant->active?'Active':'In-active' !!}
@endsection @section('js') @endsection