@extends('backend.layout.app') @section('title','Technician Profile') @push('css') @endpush @section('main_menu','HOME') @section('active_menu','Technician') @section('link',route('admin.adminDashboard')) @section('content')

Technician Detail

Technician History

@foreach($technician_history as $key=>$technician_history_data) @endforeach
Id Assign For Assign reason Assigned Time Status Notes Action
{{$key+1}} @php($user_name=\App\AllUser::find($technician_history_data->user_id)) {{$user_name->name}} {{$technician_history_data->note}} {{$technician_history_data->created_at->diffForHumans()}} @if($technician_history_data->status == 0) incomplete @elseif($technician_history_data->status == 2) Canceled @else Complete @endif @if($technician_history_data->note == null) ---- @else {{$technician_history_data->note}} @endif @if($technician_history_data->status == 1) @elseif($technician_history_data->status == 2) @else Confirm cancel @endif
Id Assign For Assign reason Assigned Time Status Notes Action
@endsection @push('js') @endpush