@foreach($fares as $fare) @endforeach
Code Name Price Cost Notes Active Action
{!! $fare->code !!} {!! $fare->name !!} {!! $fare->price !!} {!! $fare->cost !!} {!! $fare->notes !!} {!! $fare->active !!} {!! Form::open(['route' => ['admin.fares.destroy', $fare->id], 'method' => 'delete']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
{!! Form::close() !!}