@props([
'actions' => null,
'theme' => null,
'row' => null
])
@if(isset($actions) && count($actions) && $row !== '')
@foreach($actions as $action)
@php
$parameters = [];
foreach ($action->param as $param => $value) {
$parameters[$param] = $row->{$value};
}
@endphp
@if($action->event !== '')
@elseif($action->view !== '')
@else
@if(strtolower($action->method) !== ('get'))
@else
@endif
@endif
|
@endforeach
@endif