Skip to content
This repository has been archived by the owner on Oct 20, 2022. It is now read-only.

Commit

Permalink
Remove ID
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanGraham committed Oct 8, 2015
1 parent 9a918d7 commit 4348f9e
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions resources/views/runs/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<table class="table table-striped">
<thead>
<tr>
<th>Run id</th>
<th>Experiment name</th>
<th>Description</th>
<th>Flow Cell</th>
Expand All @@ -20,16 +19,12 @@
</thead>
@foreach ($runs as $run)
<tr>
<td><a href="/runs/{{ $run->id }}/edit">{{ $run->id }}</a></td>

<td>{{ $run->experiment_name}}</td>
<td><a href="/runs/{{ $run->id }}/edit">{{ $run->experiment_name}}</a></td>
<td>{{ $run->description}}</td>
<td>{{ $run->flow_cell}}</td>
<td>{{ Carbon\Carbon::parse($run->run_date)->format('d M Y')}}</td>
<td>{{ $run->run_status->status}}</td>
<td>{{ $run->instrument->name}}</td>


</tr>
@endforeach

Expand Down

0 comments on commit 4348f9e

Please sign in to comment.