@include('new_layouts.header') @php $profile = \App\Models\Utility::get_file('uploads/avatar/'); @endphp

{{ __('Planning') }}

{{ Form::text('search', isset($_GET['search']) ? $_GET['search'] : '', [ 'class' => 'form-control d-inline-block w-9 me-3 mt-auto', 'id' => 'search', 'placeholder' => __('Search by Name'), ]) }}
@forelse($users as $user)
@if ($user->color_code != null || $user->color_code != '') @php $color_co=$user->color_code; @endphp @else @php $color_co =Utility::rndRGBColorCode(); @endphp @endif
@php $short=substr($user->name, 0, 1); @endphp @php $short_lname=substr($user->lname, 0, 1); @endphp
@if (!empty($user->avatar)) @else
{{ strtoupper($short) }}{{ strtoupper($short_lname) }}
@endif @php $name=strlen($user->name) > 20 ? substr($user->name,0,19)."..." : $user->name; $lname=strlen($user->lname) > 20 ? substr($user->lname,0,19)."..." : $user->lname; @endphp

{{ $user->company_name }}

{{--
UI Designer
--}}
{{ucfirst($user->type)}}
@empty

{{__('No Organization found')}}

@endforelse
    {!! $users->links() !!}

{{ __('Manage Tenders') }}

@forelse($tender_list as $ten)
@if ($ten->color_code != null || $ten->color_code != '') @php $color_co = $ten->color_code; @endphp @else @php $color_co = Utility::rndRGBColorCode(); @endphp @endif
@php $project_name = substr($ten->project_name, 0, 1); @endphp
@if (!empty($ten->avatar)) @else
{{ $ten->company_name }}
@endif

{{ $ten->company_name }}

Project
{{ ucfirst($ten->project_name) }}
@empty

{{ __('No Notifications found') }}

@endforelse @if($tender_list->hasPages())
    {!! $tender_list->links() !!}
@endif
@include('new_layouts.footer')