@extends('general.index', $setup)
@section('thead')
{{ __('Name') }} |
{{ __('Description') }} |
{{ __('Activ') }} |
{{ __('crud.actions') }} |
@endsection
@section('tbody')
@foreach ($setup['items'] as $item)
| {{ $item->name }} |
{{ $item->description }} |
{{ $item->getConfig($companyID.'_activ','false')=="true"?__('Yes'):__('No') }} |
{{ __('Documentation')}}
{{ __('Configure')}}
@if ($companyID==$item->company_id)
@endif
|
@endforeach
@endsection