When a fare is assigned to a subfleet, the price, cost and capacity can be overridden, so you can create default values that will apply to most of your subfleets, and change them where they will differ.

{!! Form::label('code', 'Code:') !!} *
   How this fare class will show up on a ticket
{!! Form::text('code', null, ['class' => 'form-control']) !!}
{!! Form::label('name', 'Name:') !!} *
   The fare class name, E.g, "Economy" or "First"
{!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('price', 'Price:') !!}
   This is the price of a ticket for a passenger
{!! Form::text('price', null, ['class' => 'form-control', 'placeholder' => 0]) !!}
{!! Form::label('cost', 'Cost:') !!}
   The operating cost
{!! Form::text('cost', null, ['class' => 'form-control', 'placeholder' => 0]) !!}
{!! Form::label('capacity', 'Capacity:') !!}
   The number of seats available in this class.
{!! Form::text('capacity', null, ['class' => 'form-control', 'placeholder' => 0]) !!}
{!! Form::label('notes', 'Notes:') !!}
 
{!! Form::text('notes', null, ['class' => 'form-control']) !!}
{!! Form::label('active', 'Active:') !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel