checkout-cancel.blade.php 395 B

123456789101112
  1. @extends('layouts.front.app')
  2. @section('content')
  3. <div class="container product-in-cart-list">
  4. <div class="row">
  5. <div class="col-md-12">
  6. <hr>
  7. <p class="alert alert-warning">You have cancelled your order. Maybe you want to <a href="{{ route('home') }}">checkout other items?</a></p>
  8. </div>
  9. </div>
  10. </div>
  11. @endsection