Files
Kent-logistics-Laravel/resources/views/welcome.blade.php

37 lines
1.3 KiB
PHP
Raw Normal View History

2025-11-04 10:19:07 +05:30
<!DOCTYPE html>
2025-11-04 10:25:29 +05:30
<html>
<head>
<title>Laravel Test Page</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
2025-11-07 13:56:10 +05:30
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
/* Paste the provided CSS here */
</style>
2025-11-04 10:25:29 +05:30
</head>
<body class="bg-light">
2025-11-04 10:19:07 +05:30
2025-11-04 10:25:29 +05:30
<div class="container mt-5">
<div class="card shadow-lg border-0 rounded-4">
<div class="card-header bg-primary text-white">
<h4 class="mb-0">Laravel Gitea Test Page</h4>
</div>
<div class="card-body">
<h5 class="text-success"> Laravel is running successfully!</h5>
<p class="mt-3">If you see this page, your Blade views and routing work perfectly.</p>
2025-11-04 10:19:07 +05:30
2025-11-04 10:25:29 +05:30
<ul class="list-group mt-4">
<li class="list-group-item"><strong>PHP Version:</strong> {{ PHP_VERSION }}</li>
<li class="list-group-item"><strong>Laravel Version:</strong> {{ app()->version() }}</li>
<li class="list-group-item"><strong>Environment:</strong> {{ app()->environment() }}</li>
</ul>
2025-11-04 10:19:07 +05:30
2025-11-04 10:25:29 +05:30
<a href="{{ url('/') }}" class="btn btn-outline-primary mt-4">Go to Home</a>
2025-11-04 10:19:07 +05:30
</div>
2025-11-04 10:25:29 +05:30
</div>
</div>
2025-11-04 10:19:07 +05:30
2025-11-04 10:25:29 +05:30
</body>
2025-11-04 10:19:07 +05:30
</html>