@extends('layouts.dashboard-app') @section('main-content')

Hello, Welcome {{ auth()->user()->name }}

@if ($errors->any()) @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
@csrf
@endsection