@extends('admin.layout_admin.main') @section('css') @endsection @section('content') @php $filters = []; if (request()->filled('q')) { $filters[] = 'Từ khóa: ' . e(request('q')) . ''; } @endphp
Kết quả tìm kiếm: {!! implode(', ', $filters) !!}
@endif @if ($batchs->count() > 0)| 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ồn | @can(['chinh-sua-thuoc', 'xoa-thuoc'])Xử lý | @endcan
|---|---|---|---|---|---|---|---|---|---|
| {{ $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 }} |
Chưa có lô thuốc nào!
@endif