@extends('layouts.app') @section('title') {{'Sales Details'}} @endsection @section('content')
Sales Details Back to Sales List
@if(count($errors)>0) @foreach($errors->all() as $error) {{$error}} @endforeach @endif
Sales Date
Invoice No.
Select Product Name
Quantity

  Add
@section('editMethod') @show @php $i=0; @endphp @if(isset($sale_details)) @foreach($sale_details as $val) @php $i++; @endphp @endforeach @endif
Product Name Quantity Action
{!! $val->style_name !!} {!! $val->quantity !!} pcs Remove
{{method_field('PUT')}}
@endsection