在maatwebsite中,excel导入从给定的列名开始读取

The excel which I'm trying to import having has some junk information (like some logos, small information table, etc) in the initial rows and actual table start from row number 14.

enter image description here

If I try to import with the junk information it is returning all empty information as below

Maatwebsite\Excel\Collections\RowCollection Object
(
    [heading:protected] => Array
        (
            [0] => 
            [1] => 
            [2] => 
            [3] => 
            .
            .
            .
        )

    [title:protected] => Agent Servicing Excel
    [items:protected] => Array
        (
            [0] => Maatwebsite\Excel\Collections\CellCollection Object
                (
                    [title:protected] => 
                    [items:protected] => Array
                        (
                            [0] => 
                        )

                )

            [1] => Maatwebsite\Excel\Collections\CellCollection Object
                (
                    [title:protected] => 
                    [items:protected] => Array
                        (
                            [0] => 
                        )

                )

            [2] => Maatwebsite\Excel\Collections\CellCollection Object
                (
                    [title:protected] => 
                    [items:protected] => Array
                        (
                            [0] => 
                        )

                )
            .
            .
            .

        )

)

If I start from the actual table row number using code config(['excel.import.startRow' => 14]);, thats works perfectly for me, but the row number may change.

So, I want to start import from given table column name say (user_name) from which my actual table starts.

Please guide me if there is any way available, Thank you.

I think you can do this way . instead of 11 your $varialbe.

 Config::set('excel::import.startRow', $varialbe);