@extends('layouts.app') @section('title') {{'Stock Adjustment In/Out List'}} @endsection @section('content')
Stock Adjustment In/Out List
@if (Session::has('msg'))
{{ Session::get('msg') }}
@endif
Create New @php $i=0; @endphp @if($stockout_list) @foreach($stockout_list as $row) @php $i++; @endphp @endforeach @endif
S.N. Stock.No. Type Date Supplier/Customer Name Stock Value Details Action
{{$i}} {{$row->id}} {{$row->so_type}} {{date('d-m-Y', strtotime($row->txn_date))}} {{$row->name}} {{ number_format($row->total_value,2) }} View @if(isset($row->status) && $row->status ==0) | @if (Auth::user()->parents == "0")
{{method_field('DELETE')}}
@endif @endif
@endsection