ItSolutionStuff.com

Laravel Maatwebsite Excel Text Align Center Example

By Hardik Savani β€’ April 16, 2024
Laravel

In this example, i will show you laravel maatwebsite excel set text align center. this example will help you laravel excel horizontal align center. We will look at example of laravel excel vertical align center. let’s discuss about laravel PhpOffice\PhpSpreadsheet\Style\Alignment::HORIZONTAL_CENTER excel file. follow bellow step for laravel maatwebsite excel set text align center.

We will use setHorizontal() for set text align center in laravel maatwesite composer package. you can use this example with laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 version.

You can follow bellow url for checking full example of Import and Export Excel File with laravel. Here i will give you solution with export class:

Laravel Import Export Excel and CSV File Tutorial

Solution:

app/Exports/UsersExport.php

<?php

namespace App\Exports;

use App\Models\User;

use Maatwebsite\Excel\Concerns\FromCollection;

use Maatwebsite\Excel\Concerns\WithHeadings;

use Maatwebsite\Excel\Concerns\WithEvents;

use Maatwebsite\Excel\Events\AfterSheet;

class UsersExport implements FromCollection, WithHeadings, WithEvents

{

/**

* Write code on Method

*

* @return response()

*/

public function collection()

{

return User::select("id", "name", "email")->get();

}

/**

* Write code on Method

*

* @return response()

*/

public function headings() :array

{

return [

'ID',

'Name',

'Email',

];

}

/**

* Write code on Method

*

* @return response()

*/

public function registerEvents(): array

{

return [

AfterSheet::class => function(AfterSheet $event) {

$event->sheet->getDelegate()->getStyle('A1:C1')

->getAlignment()

->setHorizontal(\PhpOffice\PhpSpreadsheet\Style\Alignment::HORIZONTAL_CENTER);

},

];

}

}

Output:

I hope it can help you...

Tags: Laravel
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

πŸ“Ί Subscribe on YouTube

We Are Recommending You

β˜…

Laravel Maatwebsite Excel Set Font Color Example

Read Now β†’
β˜…

Laravel Maatwebsite Excel Set Cell Height and Width Example

Read Now β†’
β˜…

Laravel Maatwebsite Excel Increase Font Size Example

Read Now β†’
β˜…

Laravel Maatwebsite Excel Fix Header Row using freezePane()

Read Now β†’
β˜…

Laravel Maatwebsite Excel Set Background Color Example

Read Now β†’
β˜…

Laravel - Create CSV File from Custom Array using Maatwebsite

Read Now β†’
β˜…

How to Validate Excel Sheet Data in Laravel?

Read Now β†’
β˜…

Laravel 8 Import Export Excel and CSV File Tutorial

Read Now β†’
β˜…

Laravel Yajra Datatables Export to Excel CSV Button Example

Read Now β†’
β˜…

Laravel Collection Except() Method Example

Read Now β†’
β˜…

How to add header row in export excel file with maatwebsite in Laravel 5.8?

Read Now β†’