12 lines
305 B
PHP
12 lines
305 B
PHP
|
@extends('layouts.app')
|
||
|
|
||
|
@section('htmlheader_title')
|
||
|
{{ trans('message.home') }}
|
||
|
@endsection
|
||
|
|
||
|
@section('main-content')
|
||
|
<div class="col-md-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>
|
||
|
@endsection
|