@extends('admin.layout_admin.main') @section('css') @endsection @section('content') @php $filters = []; if (request()->filled('q')) { $filters[] = 'Từ khóa: ' . e(request('q')) . ''; } @endphp
@if (count($filters)) Tìm kiếm lô thuốc @else {{ $title }} @endif
@if (empty($medicine)) @endif
@if (count($filters))

Kết quả tìm kiếm: {!! implode(', ', $filters) !!}

@endif @if ($batchs->count() > 0)
@can(['chinh-sua-thuoc', 'xoa-thuoc']) @endcan @foreach ($batchs as $key => $batch) @endforeach
STT Lô thuốc Tên thuốc Nhà sản xuất Ngày sản xuất Ngày hết hạn Số lượng nhập vào Giá nhập Thuốc tồnXử lý
{{ $batchs->firstItem() + $key }} {{ $batch->batch_number }} {{ $batch->medicine->name }} {{ $batch->manufacturer }} {{ $batch->manufacture_date }} {{ $batch->expiry_date }} {{ $batch->quantity_received }} {{ number_format($batch->purchase_price, 0, ',', '.') }} {{ $batch->total_quantity }}
@can('chinh-sua-thuoc') @endcan @can('xoa-thuoc')
@method('DELETE') @csrf
@endcan
@else

Chưa có lô thuốc nào!

@endif
{{ $batchs->links() }}
@endsection @section('js') @endsection