Advertisement
lucioflaviocmatias

residents/index.blade.php

Jan 23rd, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.95 KB | None | 0 0
  1. @extends('layouts.app', ['linkTo' => 'Testi'])
  2.  
  3. @section('title', 'Moradores')
  4.  
  5. @section('content')
  6. <!-- Default box -->
  7. <div class="box">
  8.     <div class="box-header with-border">
  9.         <h3 class="box-title">Cabeçalho</h3>
  10.  
  11.             <div class="box-tools pull-right">
  12.                 <button type="button" class="btn btn-box-tool" data-widget="collapse" data-toggle="tooltip"
  13.                 title="Collapse">
  14.                     <i class="fa fa-minus"></i>
  15.                 </button>
  16.                 <button type="button" class="btn btn-box-tool" data-widget="remove" data-toggle="tooltip" title="Remove">
  17.                     <i class="fa fa-times"></i>
  18.                 </button>
  19.             </div>
  20.         </div>
  21.     <div class="box-body">    
  22.       <a href="/kiosk">Conteúdo do box</a>
  23.     </div>
  24.     <!-- /.box-body -->
  25.     <div class="box-footer">
  26.       Rodapé
  27.     </div>
  28.     <!-- /.box-footer-->
  29. </div>
  30. <!-- /.box -->
  31. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement