@if (!$rows->isEmpty())
{!! Form::open(['url' => 'admin/'.$module.'/delete', 'method' => 'post','class'=>'form-horizontal style-form','enctype'=>'multipart/form-data'] ) !!}
| رقم المسلسل |
الأسم |
مفعل? |
إجراءات |
@foreach ($rows as $row)
| {{$row->id}} |
{{$row->title_ar}} |
@if(isset($row->published))
@if (@$row->published == 1)
@else
@endif
|
@endif
@if(ACL::can('edit-'.$module))
@endif
@if(ACL::can('view-'.$module))
@endif
@if(ACL::can('view-'.$module))
@endif
@if(ACL::can('delete-'.$module))
@endif
|
@endforeach
{!! Form::close() !!}
@else
{{trans("admin.There is no results")}}
@endif