@extends('layouts.app') @section('content')

Stock Take Process

@csrf
@foreach ($locations as $item) @endforeach
Location Stock take Date Action state
{{ $item->locations->storage_location_name }} {{ date('M d, Y', strtotime($item->stocktake_proposed_date)) }} @if ($item->counting_status == 'active') Start Stock Take @elseif($item->counting_status == 'inactive') Inactive @elseif($item->counting_status == 'repeat') Repeat Stock Take @elseif($item->counting_status == 'closed') Closed @endif
@endsection