Format all blade templates to 2 spaces #530 (#531)

This commit is contained in:
Nabeel S
2020-02-01 13:05:56 -05:00
committed by GitHub
parent 06b47d97e0
commit 59d09c0cec
254 changed files with 7123 additions and 7006 deletions

View File

@@ -1,27 +1,27 @@
@extends('admin.app')
@section('title', "Edit \"$rank->name\"")
@section('content')
<div class="card border-blue-bottom">
<div class="content">
{{ Form::model($rank, ['route' => ['admin.ranks.update', $rank->id], 'method' => 'patch']) }}
@include('admin.ranks.fields')
{{ Form::close() }}
</div>
</div>
<div class="card border-blue-bottom">
<div class="card border-blue-bottom">
<div class="content">
<div class="header">
<h3>subfleets</h3>
@component('admin.components.info')
These are the subfleets this rank is allowed to use. The pay can be
set as a fixed amount, or a percentage of the rank's base payrate above
@endcomponent
</div>
<div class="row">
@include('admin.ranks.subfleets')
</div>
{{ Form::model($rank, ['route' => ['admin.ranks.update', $rank->id], 'method' => 'patch']) }}
@include('admin.ranks.fields')
{{ Form::close() }}
</div>
</div>
</div>
<div class="card border-blue-bottom">
<div class="content">
<div class="header">
<h3>subfleets</h3>
@component('admin.components.info')
These are the subfleets this rank is allowed to use. The pay can be
set as a fixed amount, or a percentage of the rank's base payrate above
@endcomponent
</div>
<div class="row">
@include('admin.ranks.subfleets')
</div>
</div>
</div>
@endsection
@include('admin.ranks.scripts')