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

{!! $cart->id !!}

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

{!! $cart->product_id !!}

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

{!! $cart->user_id !!}

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

{!! $cart->options !!}

{!! 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 !!}