@extends('crudbooster::admin_template')
@section('content')
@if($index_statistic)
@foreach($index_statistic as $stat)
{{ $stat['count'] }}
{{ $stat['label'] }}
@endforeach
@endif
@if(!is_null($pre_index_html) && !empty($pre_index_html))
{!! $pre_index_html !!}
@endif
@if(g('return_url'))
{{trans('crudbooster.form_back_to_list',['module'=>urldecode(g('label'))])}}
@endif
@if($parent_table)
@if(Request::segment(2)=='sales_customer')
Sales |
@else
{{ ucwords(urldecode(g('label'))) }} |
@endif
@foreach(explode(',',urldecode(g('parent_columns'))) as $c)
@if(urldecode(g('parent_columns_alias')))
{{explode(',',urldecode(g('parent_columns_alias')))[$loop->index]}}
@else
{{ ucwords(str_replace('_',' ',$c)) }}
@endif
| {{ $parent_table->$c }} |
@endforeach
@endif
@if(Request::segment(2)=='sales_customer')
@endif
@include("crudbooster::default.table")
@if(!is_null($post_index_html) && !empty($post_index_html))
{!! $post_index_html !!}
@endif
@endsection