14 lines
665 B
PHP
14 lines
665 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="space-y-6">
|
|
<div class="flex items-center gap-4">
|
|
<a href="{{ route('reports.index') }}" class="p-2 text-gray-500 hover:text-gray-900 hover:bg-gray-100 rounded-lg transition-colors">
|
|
<svg class="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18"/></svg>
|
|
</a>
|
|
<h1 class="text-2xl font-bold text-gray-900">{{ __('reports.payroll') }}</h1>
|
|
</div>
|
|
<p class="text-sm text-gray-500">{{ __('reports.detailed_view_coming_soon') }}</p>
|
|
</div>
|
|
@endsection
|