@extends('app') @section('meta') @endsection @section('vendor-css') @endsection @section('javascript') @endsection @section('banner') Gear Tool

Equipment Calculator

Display the gear available for a class at a certain level.

@endsection @section('content') @if(isset($error) && $error)
The job you selected is unrecognized. Try again.
@endif {!! Form::open(['url' => '/equipment', 'class' => 'form-horizontal']) !!}
Select your Class
@foreach ($crafting_job_list as $job)
@endforeach
@foreach ($gathering_job_list as $job)
@endforeach
@foreach ($advanced_melee_job_list as $job) @php if ( ! in_array($job->abbr, config('site.roles.tank'))) continue; @endphp
@endforeach
@foreach ($advanced_magic_job_list as $job) @php if ( ! in_array($job->abbr, config('site.roles.healer'))) continue; @endphp
@endforeach
@foreach ($advanced_melee_job_list as $job) @php if ( ! in_array($job->abbr, config('site.roles.melee'))) continue; @endphp
@endforeach
@foreach ($advanced_melee_job_list as $job) @php if ( ! in_array($job->abbr, config('site.roles.ranged'))) continue; @endphp
@endforeach
@foreach ($advanced_magic_job_list as $job) @php if ( ! in_array($job->abbr, config('site.roles.magic'))) continue; @endphp
@endforeach
Options
- Only show craftable items and rewardable items
- Show a condensed version
@if($previous)
or
@endif
{!! Form::close() !!} @endsection