@extends('template.layout') @section('style') @endsection @section('content')
@if (session('success')) @endif
Item List
Back Create @foreach ($items as $item) @endforeach
# Code Name Min Qty Max Qty Action
{{ $loop->iteration }} {{ $item->code }} {{ $item->name }} {{ $item->min_qty }} {{ $item->max_qty }}
@endsection @section('script') @endsection