app/views/shifts/show.html.erb

Summary

Maintainability
Test Coverage
<section class="content-header">
</section>
<section class="content">
  <div class="box">
    <div class="box-body">
      <h2> Shift </h2>
      <%= link_to "Back to Shifts", shifts_path %>
      <div> Start date:  <%= @shift.start_date %> </div>
      <div> End date:  <%= @shift.end_date %> </div>
      <div> User:  <%= @shift.user_id %> </div>
      <div> Starting cash:  <%= @shift.starting_cash %> </div>
      <div> Payments:  <%= @shift.payments %> </div>
      <div> Paid in:  <%= @shift.paid_in %> </div>
      <div> Paid out:  <%= @shift.paid_out %> </div>
      <div> Cash:  <%= @shift.cash %> </div>
     </div>
  </div>
</section>