@extends('voyager::master') @section('page_title', 'Exportar datos') @section('page_header')

Exportación de Datos

@include('voyager::multilingual.language-selector') @stop @section('content')
@include('voyager::alerts')
{!! Form::open(['route' => 'voyager.exports.download', 'method' => 'POST']) !!}
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::select('exportable',[ 'DeportistaExport' => 'Deportista' ], null, ['class' => 'form-control', 'style' => 'margin-top: 5px']); !!}
{!! Form::submit('Ver Reporte', ['class' => 'btn btn-primary btn-block btn-md pull-right']) !!}
{!! Form::close() !!}
@stop @section('css') @stop @section('javascript') @stop