{{ config('settings.company_name')}}
{{ config('settings.address_1') }}
{{$heading}}
@if($search_by['from'] && $search_by['to']) {{__('lang.from')}}: {{ $transaction->date_format($search_by['from']) }} {{__('lang.to')}}: {{ $transaction->date_format($search_by['to']) }} @else {{ 'Upto ' .$transaction->date_format(now()) }} @endif
@foreach ($sell_status_logs as $sell_status_log) @php $status_label_color = ''; if ($sell_status_log->sell->is_transfered == 1) { $status_label_color = '#fb483a'; } else { $status_label_color = $sell_status_log->sellStatus->color; } @endphp @endforeach
{{ __('lang.sno') }} {{ __('lang.project') }} {{ __('lang.registration_no') }} {{ __('lang.created_by') }} {{ __('lang.created_at') }} {{ __('lang.sell_status') }}
{{ $loop->iteration }} {{ $sell_status_log->branch->name }} {{ $sell_status_log->sell->registration_no }} {{ $sell_status_log->createdby->name }} {{ $transaction->date_format($sell_status_log->created_at) ?? '-' }} @if ($sell_status_log->sell->is_transfered == 0) {{ ucfirst(strtoupper($sell_status_log->sellStatus->name)) }} @else TRANSFER @endif