@extends('layout.app') @section('contents')
{{$board->name}}

@foreach($board_details as $details)
@if($details->media->upload->section_id == 3) ... @else @endif
@endforeach @for($i = count($board_details); $i < 4 ; $i++)
...
@endfor
@if(Auth::check()) @if(!$status) Follow @else UnFollow @endif @else Follow @endif
@if($board->user->profile_image == null) ... @else ... @endif
Created By: {{$board->user->name}}

Followed By
@foreach($followers as $follower)
@if($follower->user->profile_image == null) ... @else ... @endif
{{$follower->user->name}}
@endforeach
{{count($total_followers)}} more followers
@foreach($media as $key => $content)
@if($content->upload->section_id == 2 || $content->upload->section_id == 4) @else @endif
{{$content->title}}
@foreach($tags[$key] as $tag) @endforeach
@endforeach
@endsection