	@extends('layouts.users')

@section('content')
<br>
<br>
<br>

<table class="table table-striped">
                                    <thead>
                                      <tr>
                                        <th>Id</th>
                                         <th >Name</th>
                                        <th >content</th>
                                        <th>Image</th>
                                       
                                      </tr>
                                    </thead>
                                  <tbody>
                                         
                                         
                                      
                                      <tr>
                                        <td>{{$tap->id}}</td>
                                        <td>{{$tap->name}}</td>
                                        <td>{{$tap->title}}</td>
                                                                                
                                        <td><img height="50px" width="50px" src="{{ asset('uploads/event/'.$tap->image) }}"></td>

                                
                                      </tr>
                                     
                                    </tbody> 

                                  </table>
                                  <br>
                                  <br>
                                  <br>
@endsection

