translate base
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user