49 lines
2.7 KiB
PHP
49 lines
2.7 KiB
PHP
<!doctype html>
|
|
<html class="no-js" lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title>{{ config('app.name', 'Laravel') }} | Success Payment </title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<!-- Favicon -->
|
|
<link rel="shortcut icon" type="image/x-icon" href="{{ asset('frontend/assets/img/favicon.png') }}">
|
|
|
|
<!-- all css here -->
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/bootstrap.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/magnific-popup.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/animate.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/owl.carousel.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/themify-icons.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/pe-icon-7-stroke.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/icofont.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/meanmenu.min.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/easyzoom.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/bundle.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/style.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/responsive.css') }}">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
|
<script src="{{ asset('frontend/assets/js/vendor/modernizr-2.8.3.min.js') }}"></script>
|
|
|
|
<link rel="stylesheet" href="{{ asset('frontend/assets/css/custom.css') }}">
|
|
|
|
<!-- CSRF Token -->
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div style="height: 100vh;" class=" d-flex flex-column justify-content-center align-items-center">
|
|
<h1>Thank's for Order !</h1>
|
|
<p>we process your order as soon as possible</p>
|
|
|
|
<div class="test">
|
|
<a href="{{ route('orders.index') }}" class="btn btn-warning text-white rounded">Your Order</a>
|
|
<a href="{{ route('homepage') }}" class="btn btn-primary text-white rounded">Homepage</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|