@extends('layouts.app') @section('content')
@csrf @method('put')

@lang('app.edit_test_drive_location')

@php $userTestDriveLocation = DB::table('users')->where('id',$testDriveLocation->assigned_task_to)->first(); @endphp @foreach($employees as $employee) @php $user = DB::table('users')->where('id',$employee->user_id)->first(); @endphp @if($testDriveLocation->assigned_task_to != $employee->user_id) @endif @endforeach
@foreach($employees as $employee) @php $user = DB::table('users')->where('id',$employee->user_id)->first(); @endphp @if(in_array($employee->user_id,$employeeChoose)) @else @endif @endforeach
{{__('app.select')}} {{__('app.name')}}
{{$user->name}}
@endsection