@extends('layouts.admin.master')
@section('title', 'BOM')
@section('vendor-style')
@endsection
@section('vendor-script')
@endsection
@section('content')
@if(count($errors) > 0)
Error!!
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if($message = Session::get('success'))
@endif
# |
Product |
Date |
Action |
@forelse ($materials as $material)
{{$loop->iteration}} |
{{ $material->product->name }} |
{{ $material->created_at }} |
|
@empty
@endforelse
@endsection