PHP Classes

File: src/views/crud/fields/show/boolean.blade.php

Recommend this page to a friend!
  Classes of TJ Webb   Laravel CRUD Generator   src/views/crud/fields/show/boolean.blade.php   Download  
File: src/views/crud/fields/show/boolean.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel CRUD Generator
Generate MVC classes for any Laravel model
Author: By
Last change:
Date: 4 years ago
Size: 321 bytes
 

Contents

Class file image Download
<div class="col-xs-12 col-sm-12 col-md-12">
    <div class="form-group">
        <strong>{{$fieldDisplayName}}:</strong>
        @if($value)
            <span class="no-btn btn btn-xs btn-info">True</span>
        @else
            <span class="no-btn btn btn-xs btn-danger">False</span>
        @endif
    </div>
</div>