@extends('main') @section('title', ' Suites') @section('stylesheets') @endsection @section('Breadcrumbs') {!! Breadcrumbs::render('mainsuites') !!} @endsection @section('SearchLetters') @include('partials._searchletter') @endsection @section('content')
@foreach ($suites as $suite)
@if($suite->author) User Image {{$suite->author->name}} {{Lang::trans('messages.published')}}: {{ date('j M Y', strtotime($suite->created_at)) }} @elseif ($suite->admin) User Image {{$suite->admin->name}} {{Lang::trans('messages.published')}}: {{ date('j M Y', strtotime($suite->created_at)) }} @else no author @endif
Photo
{{$suite->suiteid}}
@endforeach
{{$suites->links()}}
@endsection @section('javascripts') @endsection