Hello guys i have a problem reading a table from an Excel document that doesnt start from raw 1 colone 1 (A1) using LARAVEL, in this docuement there is a title and some empty rows, as the image show : Excel table image
here is the code that i have used to load a table from the document, meanwhile it works fine if i deleted all the title text and all the empty cells !
Excel::load(Input::file('file'), function($reader) {
// Getting all results
$results = $reader->get();
foreach ($results as $r =>$v) {
$person = new Person;
$person->name = $v['name'];
$person->age = $v['age'];
$person->save();
}