@extends('layouts.app', ['title' => __('Restaurants')]) @section('admin_title') {{__('Restaurants')}} @endsection @section('content') @include('restorants.partials.modals')
{{ __('Name') }} | {{ __('Logo') }} | {{ __('Owner') }} | {{ __('Owner email') }} | {{ __('Creation Date') }} | {{ __('Active') }} | ||
---|---|---|---|---|---|---|---|
{{ $restorant->name }} | @else{{ $restorant->name }} | @endif{{ $restorant->user?$restorant->user->name:__('Deleted') }} | {{ $restorant->user?$restorant->user->email:__('Deleted') }} | {{ $restorant->created_at->locale(Config::get('app.locale'))->isoFormat('LLLL') }} | @if($restorant->active == 1) {{ __('Active') }} @else {{ __('Not active') }} @endif |