1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<div class="row">
<div class="col-md-6">
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">View Ride Details</h3>
<div class="box-tools pull-right">
<button class="btn btn-info btn-sm" title="" data-toggle="tooltip" data-widget="collapse" data-original-title="Collapse">
<i class="fa fa-minus"></i>
</button>
</div>
</div>
<div class="box-body">
<dl>
<dt>
Source: <span style="font-weight: normal !important"><?php echo $data->source; ?></span>
</dt>
<br/>
<dt>
Destination: <span style="font-weight: normal !important"><?php echo $data->destination; ?></span>
</dt>
<br/>
<dt>
Date: <span style="font-weight: normal !important"><?php echo $data->departure_date; ?></span>
</dt>
<br/>
<dt>
Time: <span style="font-weight: normal !important"><?php echo $data->detour_time; ?></span>
</dt>
<br/>
<dt>
No:of seats: <span style="font-weight: normal !important"><?php echo $data->no_of_seats; ?></span>
</dt>
<br/>
<dt>
price: <span style="font-weight: normal !important"><?php echo $data->price; ?></span>
</dt>
<br/>
<dt>
Max>Luggage: <span style="font-weight: normal !important"><?php echo $data->max_luggage; ?></span>
</dt>
<br/>
<dt>
Pickup Flexibility: <span style="font-weight: normal !important"><?php echo $data->pickup_flexibility; ?></span>
</dt>
<br/>
<dt>
Detour: <span style="font-weight: normal !important"><?php echo $data->detour; ?></span>
</dt>
<br/>
<dt>
Comments: <span style="font-weight: normal !important"><?php echo $data->comments; ?></span>
</dt>
<br/>
</dl>
</div><!-- /.box-body -->
</div><!-- /.box -->
</div><!-- ./col -->
<div class="col-md-6">
<div class="box-body">
<!-- <dl>
<dt>
Driver: <span style="font-weight: normal !important"><?php echo get_drivername($data->users_id); ?></span>
</dt>
<br/>
<dt>
Email: <span style="font-weight: normal !important"><?php echo get_driveremail($data->users_id); ?></span>
</dt>
<br/>
<dt>
Gender: <span style="font-weight: normal !important"><?php echo get_drivergender($data->users_id); ?></span>
</dt>
<br/>
<dt>
Date Of Birth: <span style="font-weight: normal !important"><?php echo get_driverdob($data->users_id); ?></span>
</dt>
<br/>
</dl> -->
</div><!-- /.box-body -->
</div><!-- ./col -->
</div>