@extends('backEnd.master') @section('title') @lang('system_settings.language_export') @endsection @push('style') @endpush @section('mainContent') @lang('system_settings.language_export') Dashboard @lang('system_settings.system_settings') @lang('system_settings.language_export') @lang('common.select_criteria') {{ Form::open(['class' => 'form-horizontal', 'route' => 'file-export', 'method' => 'POST']) }} @lang('common.select_all') @lang('common.download') {{ __('common.select_files') }} * @php $count= count($files); $half = round($count / 2); @endphp @foreach($files as $key=>$file) @if($loop->iteration == 1 or $loop->iteration == $half+1) @endif {{ ucwords(str_replace('_',' ',basename($file, '.php'))) }} @if($loop->iteration == $half or $loop->iteration == $count) @endif @endforeach {{ Form::close() }} @endsection