maatwebsite/excelを使ってExcelを出力する際に、stylingをしたい。
export.blade.php
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .hoge { color: green; } </style> </head> <body> <table> <thead> <tr> <th class="hoge">id</th> <th>name</th> <th>email</th> </tr> </thead> <tbody> @foreach ($users as $user) <tr> <td class="hoge">{{$user->id}}</td> <td style="color:red;">{{$user->name}}</td> <td>{{$user->email}}</td> </tr> @endforeach </tbody> </table> </body> </html>
これだと、classで定義したcolorがexcel上に反映されない。
致し方がない、inlineで書くか。
### inline
<th style="background-color:#FF0000;color:#fff">id</th>
なるほど。