@extends('layouts.app') @php $action = Request::segments()[1]; $moduleName = __('lang.sale_assigns'); $createItemName = __('lang.bulk_upload') . $moduleName; $breadcrumbCurrentName = __('lang.bulk_upload_sale_assign'); $breadcrumbMainName = $moduleName; $breadcrumbMainIcon = 'account_balance_wallet'; $breadcrumbCurrentIcon = 'add_box'; @endphp @section('title') {{ $moduleName }}->{{ $createItemName }} @stop @section('top-bar') @include('includes.top-bar') @stop @section('left-sidebar') @include('includes.left-sidebar') @stop @section('content')

{{ __('lang.instructions_for') }} Bulk Sale Assign


  • Make sure the Project entered in excel file should be exist in system.
  • Make sure the Registration No entered in excel file should be exist in system.
  • Make sure the User Name entered in excel file should be exist in system.



Bulk Sale Assign


@csrf


{{__('lang.please_check_sample_file')}}{{__('lang.download')}}


@if (count($data ?? []) > 0)
{{ csrf_field() }} @php unset($data[0]) @endphp @foreach ($data as $item) @php $branch = $item[0]; $registration_no = $item[1]; $user = $item[2]; $data_arr = [ 'row' => $loop->iteration + 1, 'branch' => $branch, 'registration_no' => $registration_no, 'user' => $user, ]; @endphp @endforeach
{{ __('lang.branch') }} {{ __('lang.registration_no') }} {{ __('lang.user') }}
{{ $branch }} {{ $registration_no }} {{ $user }}
{{ __('lang.branch') }} {{ __('lang.registration_no') }} {{ __('lang.user') }}
@endif
@endsection @push('include-css') @endpush @push('include-js') @endpush