@extends('layouts.handa')
@section('content')
@if($types->isEmpty())
No record(s) found.
@else
Bulletin Type |
No. of Bulletins |
Status |
|
@foreach($types as $type)
{{ $type->bt_name }} |
{{ $type->bulletins->count() == 0 ? '' : $type->bulletins->count() }} |
{!! $type->is_active == 1 ? '' : '' !!} |
|
@endforeach
@if($types->render())
@endif
@endif
@stop