-1
        @foreach ($modules as $module)

                @if ($module->name === "h_car_positions")   $module_name == "history_car_positions";    @endif


            <tr>
                <td>{{ $module->id }}</td>
                <td><a href="{{ url(config('laraadmin.adminRoute') . '/modules/'.$module->id) }}">{{ $module->name }}</a></td>
                <td>{{ $module->name_db }}</td>

                <td>{{ Module::itemCount( $module_name ) }}</td>
                <td>
                    <a href="{{ url(config('laraadmin.adminRoute') . '/modules/'.$module->id)}}#fields" class="btn btn-primary btn-xs" style="display:inline;padding:2px 5px 3px 5px;"><i class="fa fa-edit"></i></a>
                    <a href="{{ url(config('laraadmin.adminRoute') . '/modules/'.$module->id)}}#access" class="btn btn-warning btn-xs" style="display:inline;padding:2px 5px 3px 5px;"><i class="fa fa-key"></i></a>
                    <a href="{{ url(config('laraadmin.adminRoute') . '/modules/'.$module->id)}}#sort" class="btn btn-success btn-xs" style="display:inline;padding:2px 5px 3px 5px;"><i class="fa fa-sort"></i></a>
                    <a module_name="{{ $module->name }}" module_id="{{ $module->id }}" class="btn btn-danger btn-xs delete_module" style="display:inline;padding:2px 5px 3px 5px;"><i class="fa fa-trash"></i></a>
                </td>
            </tr>
        @endforeach

当 if 语句为真时,我想将 history_car_positions 分配给 $module 名称如何在刀片中执行此操作

4

3 回答 3

1

我应该首先注意您的语法不正确-您是在比较 ( ==),而不是分配 ( =)。

但是 Blade 作为解释器,对原始 PHP 有自己的控制结构

但是,如果您只是将此变量传递给itemCount,您可能希望在您的视图中评估和分配它,而不是直接在模板中。维护起来会干净得多。

于 2019-04-16T17:34:02.797 回答
0

使用 php 标签

@if ($module->name === "h_car_positions")  <?php $module_name = "history_car_positions"; ?> @endif
于 2019-04-16T17:49:58.370 回答
0

您可以尝试php指令laravel docs

@if ($module->name === "h_car_positions")
   @php
      $module_name = "history_car_positions"; // use = instead of ==
   @endphp
@endif
于 2019-04-16T17:28:45.510 回答