@extends('layouts.main') @section('content') @include('partials.breadcrumb', ['breadcrumbTitle' => 'Cycle Count', 'parentUrl' => '#', 'parentTitle' => 'Inventory Control']) @include('reports.cycle-count.partials.cycle-count-submenu')
@include('partials.error-message')
@include('partials.dropdowns.location-all-warehouse', ['locationId' => $selectedLocationId??''])
* Required
@if(isset($mergedData))
{{csrf_field()}} @foreach($mergedData as $key => $data) @endforeach @if($mergedData->isEmpty()) @endif
# Asset Tag # / Serial #
{{ $key +1 }} {{$data->serial_no}}
Merge & Finalize Count
@else
# Asset Tag # / Serial #
@endif
Frozen Locations
@include('reports.cycle-count.partials.frozen-locations')
Location Unfreeze
{{ $locations->links() }}
@include('reports.cycle-count.modals.confirm-unfreeze') @include('reports.cycle-count.modals.confirm-merge') @endsection @section('help-links') @include('help.help-links',['helpLink'=>config('help-links.help_links.cycle_count'),'helpTitle'=>config('help-links.help_titles.cycle_count')]) @endsection @section('after_scripts') @include('assets.partials.scripts.common') @include('reports.cycle-count.scripts.cycle-count') @include('reports.cycle-count.scripts.cycle-count-form-submit-ajax', [ 'form_id' => 'varience-create-form', 'route_name' => 'cycle-count.updateRows' ]) @endsection