Commit c4af87c3 by Hannah Zahra

Final Part 2

parent aa2c0374
...@@ -42,7 +42,7 @@ public function index() ...@@ -42,7 +42,7 @@ public function index()
->orderBy('claim_date', 'desc') ->orderBy('claim_date', 'desc')
->get(); ->get();
return view('mileage::hod.index', compact('claims')); return view('mileage::HOD.index', compact('claims'));
} }
public function show($id) public function show($id)
...@@ -78,7 +78,7 @@ public function show($id) ...@@ -78,7 +78,7 @@ public function show($id)
$claim->display_total_claim_amount = $claim->display_total_claim_amount =
($calculatedAmount + ($claim->toll_amount ?? 0) + ($claim->others_amount ?? 0)) - $displayPenalty; ($calculatedAmount + ($claim->toll_amount ?? 0) + ($claim->others_amount ?? 0)) - $displayPenalty;
return view('mileage::hod.show', compact('claim')); return view('mileage::HOD.show', compact('claim'));
} }
public function verify($id) public function verify($id)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment