diff --git a/app/Http/Controllers/SRP/SRPController.php b/app/Http/Controllers/SRP/SRPController.php index 64d4ea15c..a4b2434a3 100644 --- a/app/Http/Controllers/SRP/SRPController.php +++ b/app/Http/Controllers/SRP/SRPController.php @@ -24,6 +24,10 @@ class SRPController extends Controller $this->middleware('role:User'); } + public function displaySrpHistory() { + + } + public function displayPayoutAmounts() { $payouts = array(); $count = 0; diff --git a/resources/views/dashboard.blade.php b/resources/views/dashboard.blade.php index 58e6f6f3f..cf654b10e 100644 --- a/resources/views/dashboard.blade.php +++ b/resources/views/dashboard.blade.php @@ -46,6 +46,7 @@ Ship Type Loss Value Status + Date @foreach($open as $o) @@ -55,6 +56,7 @@ {{ $o['ship_type'] }} {{ $o['loss_value'] }} {{ $o['approved'] }} + {{ $o['created_at'] }} @endforeach @@ -86,6 +88,7 @@ Loss Value Status Notes + Date @foreach($denied as $d) @@ -96,6 +99,7 @@ {{ $d['loss_value'] }} {{ $d['approved'] }} {{ $d['notes'] }} + {{ $d['updated_at'] }} @endforeach @@ -126,6 +130,7 @@ Ship Type Loss Value Status + Date @foreach($approved as $a) @@ -135,6 +140,7 @@ {{ $a['ship_type'] }} {{ $a['loss_value'] }} {{ $a['approved'] }} + {{ $a['updated_at'] }} @endforeach