Laravel-Excel在XLSX文件中显示网格线

问题描述

Laravel-excel v3.1 Laravel 6 PHP 7.2

我想在导出的xlsx文件显示网格线。认情况下,不显示网格线。有显示网格线的功能吗?

以下是视图文件

任何建议将不胜感激。

谢谢。

   @PHP
    $checked_item_list = ssget($ui_id,'checked_item_list',array());
@endPHP
<table>
    <thead>
    <tr>
        @foreach ($checked_item_list as $name)
            <th>{{ __("player.{$name}") }}</th>
        @endforeach
    </tr>
    </thead>
    <tbody>
    @if (isset($players))
        @foreach($players as $player)
            <tr>
                @foreach ($checked_item_list as $name)
                    <td>{{ $player[$name] }}</td>
                @endforeach
            </tr>
        @endforeach
    @endif
    </tbody>
</table>

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)