@extends('admin.layout.master')
@section('content')
@section('boards', 'active')
@section('title', 'Board Detail')
Board Name: |
@if(!empty($board->board_name)){{$board->board_name}}@endif |
Date of Birth: |
@if(!empty($board->dob)){{$board->dob}}@endif |
Date of Death: |
@if(!empty($board->death_date)){{$board->death_date}}@endif |
Status: |
@if($board->status == 'Featured')
Featured
@else
UnFeatured
@endif
|
Details
Description: |
@if(!empty($board->description)){{$board->description}} @else No description available @endif |
About: |
@if(!empty($board->about)) {!! $board->about !!} @else No information available @endif |
Story: |
@if(!empty($board->story)) {!! $board->story !!} @else No story available @endif |
Gallery
@if(!empty($board->gallery))
@foreach($board->gallery as $gallery)
 }})
@endforeach
@endif
@endsection