如何在 blade 模板中放置空格

How to put spaces in blade template

我正在使用 https://github.com/cntaoyu/CI-Blade 框架,我的代码是:(工作正常,也可以打印)

    @foreach($tbl_data as $d) 
        @foreach($d as $c) 
            {{$c}}  //I want space after this, new line in fact
        @endforeach 
    @endforeach 
 @foreach($tbl_data as $d) 
    @foreach($d as $c) 
        {{$c}}  <br> //if it is blade
    @endforeach 
@endforeach