{!! Form::label('id', 'Id:', ['class' => 'col-3 control-label text-right']) !!}

{!! $cart->id !!}

{!! Form::label('food_id', 'Food Id:', ['class' => 'col-3 control-label text-right']) !!}

{!! $cart->food_id !!}

{!! Form::label('user_id', 'User Id:', ['class' => 'col-3 control-label text-right']) !!}

{!! $cart->user_id !!}

{!! Form::label('extras', 'Extras:', ['class' => 'col-3 control-label text-right']) !!}

{!! $cart->extras !!}

{!! Form::label('quantity', 'Quantity:', ['class' => 'col-3 control-label text-right']) !!}

{!! $cart->quantity !!}

{!! Form::label('created_at', 'Created At:', ['class' => 'col-3 control-label text-right']) !!}

{!! $cart->created_at !!}

{!! Form::label('updated_at', 'Updated At:', ['class' => 'col-3 control-label text-right']) !!}

{!! $cart->updated_at !!}