PHP Classes

File: resources/views/vendor/livewire-tables/bootstrap-4/components/table/row-columns.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/vendor/livewire-tables/bootstrap-4/components/table/row-columns.blade.php   Download  
File: resources/views/vendor/livewire-tables/bootstrap-4/components/table/row-columns.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 2 years ago
Size: 802 bytes
 

Contents

Class file image Download
@foreach($columns as $column)
    @if ($column->isVisible())
        @continue($columnSelect && ! $this->isColumnSelectEnabled($column))

        <x-livewire-tables::bs4.table.cell
            :class="method_exists($this, 'setTableDataClass') ? $this->setTableDataClass($column, $row) : ''"
            :id="method_exists($this, 'setTableDataId') ? $this->setTableDataId($column, $row) : ''"
            :customAttributes="method_exists($this, 'setTableDataAttributes') ? $this->setTableDataAttributes($column, $row) : []"
        >
            @if ($column->asHtml)
                {{ new \Illuminate\Support\HtmlString($column->formatted($row)) }}
            @else
                {{ $column->formatted($row) }}
            @endif
        </x-livewire-tables::bs4.table.cell>
    @endif
@endforeach