@extends('layouts.dashboard') @section('contents')
@if(Session::has('error')) @endif @if($circulars->count())

Available Circular(s)

@foreach($circulars as $circular)
{{$circular->title}}
Id - {{$circular->id}} *Fees - {{$circular->fees}} *End - {{ \Carbon\Carbon::parse($circular->app_end)->format('d/m/Y') }}
@endforeach
@else

There is no circular currently running.

@endif
@endsection @section('scripts') @endsection