12 lines
206 B
PHP
12 lines
206 B
PHP
@extends('Shop.layout.layout', [
|
|
'title' => __('Commande confirmée'),
|
|
])
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-8">
|
|
Votre commande a été confirmée
|
|
</div>
|
|
</div>
|
|
@endsection
|