column for admin page

This commit is contained in:
2019-08-03 15:45:21 -05:00
parent 70f1f5d2a8
commit b65d00c8b4

View File

@@ -172,6 +172,7 @@ class MoonsAdminController extends Controller
//Set up the renter whether it's W4RP or another corporation //Set up the renter whether it's W4RP or another corporation
$ticker = $rental->RentalCorp; $ticker = $rental->RentalCorp;
$type = $rental->Type;
} }
//Set the color for the table //Set the color for the table
@@ -196,6 +197,7 @@ class MoonsAdminController extends Controller
'RowColor' => $color, 'RowColor' => $color,
'Paid' => $paid, 'Paid' => $paid,
'Contact' => $contact, 'Contact' => $contact,
'Type' => $type,
'Renter' => $ticker, 'Renter' => $ticker,
]); ]);
} }