@extends("frontend.layout.main") @section("content")
@if(isset($act))

{{ $act->title ?? 'Blog Title' }}

{!! $act->description !!}
@else

No blog found.

@endif

Other {{$actCategory ?? "Important Acts" }}

@if(isset($acts) && $acts->count() > 0) @foreach ($acts as $item) @endforeach @else

No latest acts found.

@endif
@endsection