@extends('dashboard.index')
@section('contentDashboard')
@include('dashboard.page_header')
@if ($message = Session::get('success'))
@endif
@lang('dashboard.title_id') |
@lang('dashboard.title_name') |
{{-- @lang('dashboard.title_description') | --}}
@lang('dashboard.title_action') |
@foreach ($themePositions as $i => $position)
{{ $position->id }} |
{{ $position->name }} |
{{-- {!! $position->description !!} | --}}
@can('themeposition-edit')
@endcan
@can('themeposition-delete')
@include('dashboard.modal_delete')
@endcan
|
@endforeach
{!! $themePositions->render() !!}
@endsection