dongwuwan5646 2017-12-22 18:19
浏览 33
已采纳

PHP动态列的总和

I would like to have the sum of the 4th column of a table, and I dry miserably.

My controller:

public function ticket()
{
    $cmdbars = DB::table('bars')
             ->orderBy('updated_at', 'asc')
             ->get();

    return view('bar_iframe', compact('cmdbars'));
}

My view :

<table>
@foreach($cmdbars as $cmdbar)

<tr>
    <td>
        {{ $cmdbar->la_qtt }}
    </td>
    <td>
        {{ $cmdbar->la_denom }}
    </td>
    <td class="txtr">
        {{ number_format($cmdbar->le_tarif_bar/100, 2, '.', ' ') }}
    </td>
    <td class="txtr">
        @php
        $sum_produit = $cmdbar->le_tarif_bar * $cmdbar->la_qtt;
        @endphp
        {{ number_format($sum_produit/100, 2, '.', ' ') }}
    </td>
</tr>
@endforeach

<tr>
    <td colspan="4">
        <div class="total_cmd">
            {{-- HERE, I would like the sum of the 4th column --}} €
        </div>
    </td>
</tr>

I'm looking for a day and I'm blocking on this problem, Thanks for your help

  • 写回答

3条回答 默认 最新

  • dongqijuan3786 2017-12-22 18:22
    关注

    Something like this should be working:

    {{ number_format($cmdbars->sum(function($el) {return $el->le_tarif_bar * $el->la_qtt; })/100, 2, '.', ' ') }}
    

    (assuming you are using Laravel 5.3.+ where Query builder is returning collection of elements - method sum is used here)

    Also I don't see any point in using:

    @php
    $sum_produit = $cmdbar->le_tarif_bar * $cmdbar->la_qtt;
    @endphp
    {{ number_format($sum_produit/100, 2, '.', ' ') }}
    

    Use:

    {{ number_format(($cmdbar->le_tarif_bar * $cmdbar->la_qtt)/100, 2, '.', ' ') }}
    

    instead. Using PHP in Blade (or generally in views) is bad practice and should be avoided if possible.

    EDIT

    Personally I would use Eloquent for this and create Bar model and get bars like this:

    $cmdbars = Bar::orderBy('updated_at', 'asc')->get();
    

    In Bar model I would add accessor:

    public function getPriceAttribute()
    {
       return $this->le_tarif_bar * $this->la_qtt;
    }
    

    and then in view instead of:

    @php
    $sum_produit = $cmdbar->le_tarif_bar * $cmdbar->la_qtt;
    @endphp
    {{ number_format($sum_produit/100, 2, '.', ' ') }}
    

    I would use:

    {{ number_format($cmdbar->price/100, 2, '.', ' ') }}
    

    and to get sum I would use:

    {{ number_format($cmdbars->sum('price')/100, 2, '.', ' ') }}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像
  • ¥15 改算法,照着压缩包里边,参考其他代码封装的格式 写到main函数里
  • ¥15 用windows做服务的同志有吗
  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法