vernova/resources/views/reports/inventory.blade.php
2026-07-26 19:58:27 +03:30

14 lines
667 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.inventory') }}</h1>
</div>
<p class="text-sm text-gray-500">{{ __('reports.detailed_view_coming_soon') }}</p>
</div>
@endsection