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

{!! $nutrition->id !!}

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

{!! $nutrition->name !!}

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

{!! $nutrition->quantity !!}

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

{!! $nutrition->food_id !!}

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

{!! $nutrition->created_at !!}

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

{!! $nutrition->updated_at !!}