DATA ITEM MASTER
{{-- notifikasi form validasi --}}
@if ($errors->has('file'))
{{ $errors->first('file') }}
@endif
{{-- notifikasi sukses --}}
@if ($sukses = Session::get('sukses'))
{{ $sukses }}
@endif
@if (session('warning'))
{{ session('warning') }}
@endif
@if (session('success'))
{{ session('success') }}
@endif
ITEM EXPORT
{{-- Import Excel --}}
EXPORT EXCEL
@if (session('success'))
@endif
| No |
ITEMID |
Brand |
Group Item |
Product Division |
Namelevel3 |
Namelevel4 |
Namelevel5 |
Description |
Harga |
Mtp |
@php $i=1 @endphp
@foreach ($item as $s)
| {{ $i++ }} |
{{ $s->item_id }} |
{{ $s->brand }} |
{{ $s->group_item }} |
{{ $s->product_division }} |
{{ $s->namelevel3 }} |
{{ $s->namelevel4 }} |
{{ $s->namelevel5 }} |
{{ $s->name_discription }} |
{{ $s->salesprice_incl }} |
{{ $s->mtp }} |
@endforeach
@endsection