@extends('organizations.layouts.default') @section('content')
@include('organizations.layouts.partials.breadcrumb')
{{-- @include('organizations.tenders.search') --}}
{{--
--}}
{{-- @if ($records->count() > 0 || request()->all() != null) --}}
{{-- --}} @forelse ($records->groupBy('tender_id') as $tenders) @empty @endforelse
S.N Tender Assigned to Assigned Date Status Action
{{ nepali_number(++$loop->index) }}. {{ $tenders->unique('tender_id')->first()->tenders->title ?? '-' }} @foreach ($tenders as $tender) {{ $tender->users?->name ?? '-' }} , @endforeach {{ \Carbon\Carbon::parse($tenders->unique('tender_id')->pluck('created_at')->first())->format('jS M, Y') }}
{{ __('table.no_data') }}
{{-- @else @include('organizations.tenders.no-tender-record') @endif --}}
{{ $records->appends([ 'title' => request()->input('title'), 'published_on' => request()->input('published_on'), 'opportunity_type_id' => request()->input('opportunity_type_id'), 'tender_status' => request()->input('tender_status'), ])->links('pagination::tailwind') }}
@endsection