@extends('layouts.layout-2')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
SysAdmin ReImport TravelBooking
{!! Form::open(['url' => route('sysadmin_tool_store', ['reimport']), 'class' => '']) !!}
{{--
--}}
@if(count($values)>0)
| ID |
crm_booking_id |
first_name |
last_name |
Action |
@foreach($values as $value)
| {{$value->id}} |
{{$value->crm_booking_id}} |
{{$value->first_name}} |
{{$value->last_name}} |
|
@endforeach
@endif
{!! Form::close() !!}
@endsection