@extends('shop/layout') @section('shop')
@foreach($order->lines as $line) @endforeach
  Product Options Qty Price
{{$line->product->title}} {{implode('/', $line->options)}} {{$line->qty}} {{$line->price}}€
Total : {{$order->total}}€
@auth
@else Please login to your account or create one
Login - Register @endauth
@stop