@extends('layouts.admin') @section('page-title','') @section('breadcrumb') @include('admin.partials.crumb',[ 'crumbs'=>[ route('admin.dashboard')=>__('default.dashboard'), '#'=>isset($pageTitle)?$pageTitle:'' ]]) @endsection @section('content')
{{ __lang('fields-help') }}
{{ __lang('Add Field') }}
@php foreach($paginator as $row): @endphp @php endforeach; @endphp
{{ __lang('name') }} {{ __lang('sort-order') }} {{ __lang('type') }} {{ __lang('student-editable') }} {{__lang('actions')}}
{{ $row->name }} {{ $row->sort_order }} {{ $row->type }} {{boolToString($row->enabled)}}
@php // add at the end of the file after the table echo paginationControl( // the paginator object $paginator, // the scrolling style 'sliding', // the partial to use to render the control null, // the route to link to when a user clicks a control link array( 'route' => 'admin/default', 'controller'=>'setting', 'action'=>'fields', ) ); @endphp
@endsection