@extends('layouts.app') @section('title', 'مرتجع مشتريات جديد - '.config('app.name')) @section('breadcrumb') الرئيسية › المشتريات › مرتجعات المشتريات › مرتجع جديد @endsection @section('content') @php $purchaseReturnSupplierOptions = $suppliers->map(fn ($s) => [ 'value' => $s->id, 'label' => trim($s->getLocalizedDisplayName().' ('.($s->code ?? '').')'), ])->all(); $purchaseReturnWarehouseOptions = $warehouses->map(fn ($w) => [ 'value' => $w->id, 'label' => trim((string) ($w->name_ar ?? $w->name_en ?? $w->code ?? '')), ])->all(); $returnTypeOptions = collect($returnTypes)->map(fn ($rt) => ['value' => $rt, 'label' => $rt])->all(); @endphp