@extends('admin.layouts.app') @section('title', 'University Details') @section('content')
University Name:

{{ $university->name }}

Address:

{{ $university->address }}

@if($university->phone) @endif @if($university->email) @endif
Created:

{{ $university->created_at->format('F d, Y \\a\\t h:i A') }} ({{ $university->created_at->diffForHumans() }})

@if($university->updated_at != $university->created_at)
Last Updated:

{{ $university->updated_at->format('F d, Y \\a\\t h:i A') }} ({{ $university->updated_at->diffForHumans() }})

@endif
@if($university->logo) {{ $university->name }} Logo @else

No Logo Available

@endif
Frontend Preview
{{ $university->name }}

{{ Str::limit($university->address, 40) }}

@if($university->phone) {{ $university->phone }} @endif @if($university->email) {{ $university->email }} @endif
This is how it appears on the frontend

@endsection