@extends('admin.template.master') @section('content')
@csrf
Select Branch
@foreach ($branches as $br) @if ($branch_ids != '') @if (in_array($br->branch_id, $branch_ids))
{{ $br->branch_name }}
@else
{{ $br->branch_name }}
@endif @else
{{ $br->branch_name }}
@endif @endforeach


@php $total_items = 0; @endphp @foreach ($transfers as $trf) @php $total_items += $trf->total_items; @endphp @endforeach
# {{__('messages.date/time')}} {{__('messages.start_date')}} {{__('messages.invoice')}} {{__('messages.total_items')}}
{{ $loop->iteration }} {{ $trf->dated }} {{ $trf->branch->branch_name }} {{ $trf->invoice }} {{ intval($trf->total_items) }}
        {{ intval($total_items) }}
@endsection @section('customjs') @endsection