translate base

This commit is contained in:
Mekan1206
2026-07-31 18:08:08 +05:00
parent a794dacd39
commit 581cb8241c
413 changed files with 9087 additions and 428 deletions

View File

@@ -1,8 +1,8 @@
<!DOCTYPE html>
<html lang="en">
<html lang="{{ app()->getLocale() }}">
<head>
<meta charset="utf-8">
<title>Employee List</title>
<title>@lang('exports.employee_list.title')</title>
<style>
body { font-family: DejaVu Sans, sans-serif; font-size: 11px; color: #1e293b; }
h1 { color: #1d4ed8; }
@@ -13,19 +13,19 @@
</style>
</head>
<body>
<h1>Employee Directory</h1>
<p class="muted">Generated {{ $generatedAt->format('Y-m-d H:i') }} · {{ config('hr.company_name') }}</p>
<h1>@lang('exports.employee_list.heading')</h1>
<p class="muted">@lang('exports.employee_list.generated') {{ $generatedAt->format('Y-m-d H:i') }} · {{ config('hr.company_name') }}</p>
<table>
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Department</th>
<th>Position</th>
<th>Shift</th>
<th>Status</th>
<th>Phone</th>
<th>@lang('exports.employee_list.number')</th>
<th>@lang('exports.employee_list.name')</th>
<th>@lang('exports.employee_list.department')</th>
<th>@lang('exports.employee_list.position')</th>
<th>@lang('exports.employee_list.shift')</th>
<th>@lang('exports.employee_list.status')</th>
<th>@lang('exports.employee_list.phone')</th>
</tr>
</thead>
<tbody>