@extends('layouts.master') @section('content')
@if(Session::has('message'))
× Info! {{ Session::get('message') }}
@endif
Note:- These columns must be present in your csv file = License Number (license_number), Full Name (full_name), License Type (license_type).
Upload data to cloud database via CSV file including csv headers mapping with database headers
Select your csv file:
{{ csrf_field() }}
0%
@if(isset($columnArr)) @empty($columnArr['headers'])

No data found!

@else @foreach ($columnArr['headers'] as $col) @endforeach @foreach ($columnArr['data'] as $col) @endforeach
{{ $col }}
{{ $col }}
@endempty @else

No data found!

@endif
 
Select your csv file:
{{ csrf_field() }}
Select your csv file:
{{ csrf_field() }}
Click here to download sample csv file with all required columns.
No any extra column required to be present in your csv file.
You may able to reduce the columns but not able to increase any column which is not avilable in our database.
So, just remove any extra column before upload.
@endsection