@extends('dashboard.index') @section('contentDashboard') @include('dashboard.page_header') @if ($message = Session::get('success'))

{{ $message }}

@endif @foreach ($modules as $i => $module) @endforeach
@lang('dashboard.title_id') @lang('dashboard.title_title') @lang('dashboard.title_module_position') @lang('dashboard.title_active') @lang('dashboard.title_action')
{{ $module->id }} {{ $module->title }} {{ $module->themePosition->name }} @if ($module->status == 1) @else @endif @can('module-edit') @endcan @can('module-delete') @include('dashboard.modal_delete') @endcan
{!! $modules->render() !!} @endsection