@extends('admin.layouts.master') @section('title', 'تطبيقات التجار') @section('css') @include('admin.helper.tablecss') @include('admin.helper.formscss') @endsection @php $vendorSummary = $vendors->mapWithKeys(function ($vendor) { return [ $vendor->id => [ 'id' => $vendor->id, 'name' => $vendor->name() ?? 'Vendor #' . $vendor->id, 'email' => $vendor->user->email, 'mobile' => $vendor->user->mobile, 'app' => optional($vendor->vendorApp)->appName, ], ]; }); @endphp @section('content')