Hello, Welcome {{ auth()->user()->name }}
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@php
if ($advances->month == 1) {
$month = 'January';
}elseif ($advances->month == 2) {
$month = 'February';
}elseif ($advances->month == 3) {
$month = 'March';
}elseif ($advances->month == 4) {
$month = 'April';
}elseif ($advances->month == 5) {
$month = 'May';
}elseif ($advances->month == 6) {
$month = 'June';
}elseif ($advances->month == 7) {
$month = 'July';
}elseif ($advances->month == 8) {
$month = 'August';
}elseif ($advances->month == 9) {
$month = 'September';
}elseif ($advances->month == 10) {
$month = 'October';
}elseif ($advances->month == 11) {
$month = 'November';
}elseif ($advances->month == 12) {
$month = 'December';
}
@endphp
@endforeach