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