mining tax testing

This commit is contained in:
2021-03-07 20:32:53 +09:00
parent 186c79c8d3
commit 137522fd02
2 changed files with 4 additions and 6 deletions

View File

@@ -124,8 +124,6 @@ class MiningTaxesController extends Controller
]); ]);
} }
dd($structures);
//Return the view with the extractions variable for html processing //Return the view with the extractions variable for html processing
return view('miningtax.user.display.upcoming')->with('structures', $structures); return view('miningtax.user.display.upcoming')->with('structures', $structures);
} }

View File

@@ -17,10 +17,10 @@
<tbody> <tbody>
@foreach($structures as $ex) @foreach($structures as $ex)
<tr> <tr>
<td>{{ $ex['structure_name'] }}</td> <td>{{ $ex['structure_name'] }} UTC</td>
<td>{{ $ex['start_time'] }}</td> <td>{{ $ex['start_time'] }} UTC</td>
<td>{{ $ex['arrival_time'] }}</td> <td>{{ $ex['arrival_time'] }} UTC</td>
<td>{{ $ex['decay_time'] }}</td> <td>{{ $ex['decay_time'] }} UTC</td>
</tr> </tr>
@endforeach @endforeach
</tbody> </tbody>