@extends('layouts.pdf') @section('title') {{ $extra['module_name'] }} @endsection @section('content')
@include('admin.partials.header', ['extra' => $extra]) @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
@endsection