Advertisement
Guest User

index.blade.php

a guest
Dec 18th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.39 KB | None | 0 0
  1. @extends('layouts.app')
  2. @section('content')
  3.     <div class="container">
  4.         <table class="display table table-bordered table-condensed table-responsive dynamic-table">
  5.             <thead>
  6.             <tr>
  7.                 <th>Naam: </th>
  8.                 <th>Email: </th>
  9.             </tr>
  10.             </thead>
  11.  
  12.             <tbody>
  13.             <br>
  14.             @foreach($fans as $fan)
  15.                 <tr class="clickable-row" data-url="/fans/{{ $fan->id }}">
  16.                     <td>{{ $fan->name }}</td>
  17.                     <td>{{ $fan->email }}</td>
  18.                     <td><a href="{{ url('/fans', array('id' => $fan->id)) }}"><button class="btn btn-warning"><span class="glyphicon glyphicon-info-sign"> Info</span></button></a></td>
  19.                     <td><a href="{{ url('/fans/' . $fan->id . '/edit') }}"><button class="btn btn-warning"><span class="glyphicon glyphicon-pencil"> Bijwerken</span></button></a></td>
  20.                     {!! Form::open(array('route' => array('fans.destroy', $fan->id), 'method' => 'delete')) !!}
  21.                     <td><button class="btn btn-danger delBtn" onclick="return confirm('Weet je zeker dat je deze gebruiker wilt verwijderen?')" data-toggle="confirmation" type="submit">Verwijderen</button></td>
  22.                     {!! Form::close() !!}
  23.                 </tr>
  24.             @endforeach
  25.             </tbody>
  26.  
  27.         </table>
  28.     </div>
  29. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement