@extends('backend.layouts.master') @section('content') @push('styles') @endpush
| Student | Month | Days | Amount | Status | Mark Paid |
|---|---|---|---|---|---|
| {{ $bill->student->first_name }} {{ $bill->student->last_name }} | {{ \Carbon\Carbon::parse($bill->month)->format('F Y') }} | {{ $bill->days }} | ₹{{ number_format($bill->amount, 2) }} | {{ ucfirst($bill->status) }} | @if($bill->status == 'unpaid') @else @endif |