2021-07-09 01:39:27 +00:00
|
|
|
@extends('metronic::layouts.app')
|
2018-08-11 05:09:41 +00:00
|
|
|
|
|
|
|
@section('htmlheader_title')
|
2021-07-09 01:39:27 +00:00
|
|
|
Order Received
|
2018-08-11 05:09:41 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('main-content')
|
2021-07-09 01:39:27 +00:00
|
|
|
<div class="main">
|
|
|
|
<div class="container">
|
|
|
|
<div class="col-12">
|
|
|
|
<h2>Order Service</h2>
|
|
|
|
<p>Your order has been received - #{{ $o->id }}. An email will be sent to you with as your order progresses.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-11 05:09:41 +00:00
|
|
|
</div>
|
|
|
|
@endsection
|