@extends('template') @section('content')

Player Export

@if ($errors->any())
{{ __('Something went wrong.') }}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if($success)
Success
    {{ $success }}
@endif @if($data)
Data
{{ $data }}
@endif

Click here for full instructions

@endsection @section('scripts') @endsection