25 lines
828 B
PHP
25 lines
828 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title>Laravel</title>
|
|
|
|
<link rel="stylesheet" href="{{ url('/css/bootstrap.min.css') }}">
|
|
</head>
|
|
<body>
|
|
<body>
|
|
<div class="alert alert-success" role="alert">
|
|
<h3 class="alert-heading">Congratulations!</h3>
|
|
<p>Stocks is running successfully!</p>
|
|
</div>
|
|
|
|
<!-- Optional JavaScript -->
|
|
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
|
|
<script src="{{ url('/js/jquery-3.4.1.slim.min.js') }}"></script>
|
|
<script src="{{ url('/js/popper.min.js') }}"></script>
|
|
<script src="{{ url('/js/bootstrap.min.js') }}"></script>
|
|
</body>
|
|
</html>
|