@ -89,19 +89,22 @@ public class SharedTripsController extends Controller{
popUpGrid . add ( driverPhoto , 0 , 3 ) ;
Label carTitle = new Label ( "Car" ) ;
popUpGrid . add ( carTitle , 0 , 5 ) ;
popUpGrid . add ( carTitle , 0 , 4 ) ;
Label carModel = new Label ( trip . ride . getModel ( ) ) ;
popUpGrid . add ( carModel , 0 , 6 ) ;
popUpGrid . add ( carModel , 0 , 5 ) ;
Label carPlate = new Label ( trip . ride . getLicensePlate ( ) ) ;
popUpGrid . add ( carPlate , 0 , 7 ) ;
popUpGrid . add ( carPlate , 0 , 6 ) ;
Label carColour = new Label ( trip . ride . getColour ( ) ) ;
popUpGrid . add ( carColour , 0 , 8 ) ;
popUpGrid . add ( carColour , 0 , 7 ) ;
Label carYear = new Label ( String . valueOf ( trip . ride . getYear ( ) ) ) ;
popUpGrid . add ( carYear , 0 , 9 ) ;
popUpGrid . add ( carYear , 0 , 8 ) ;
Label seatsAvailable = new Label ( String . valueOf ( trip . getSeatsAvailable ( ) ) ) ;
popUpGrid . add ( seatsAvailable , 0 , 9 ) ;
//stops
TableView < TripStop > stopTableView = new TableView < > ( ) ;