@extends('admin.layout.master') @section('content') @section('boards', 'active') @section('title', 'Boards')
@if (session('success'))
{{ session('success') }}
@endif
Boards
{{-- Wall of Honor --}}
@foreach ($boards as $board) @if($board->status == 'Featured') @else @endif @endforeach
ID Board Name DOB Death Date Status Action
{{$board->id}} {{$board->board_name}} {{$board->dob}} {{$board->death_date}}FeaturedUnFeatured
@endsection @push('script') @endpush