Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. public function contactos()
  2. {
  3. $Contactos=Contactos::where('idContactos', '>', 5)->paginate(10);
  4. return view('contactos',compact('Contactos'));
  5. }
  6.  
  7. {{ $Contactos1->onEachSide(5)->links() }}
  8.  
  9. <div >
  10. <table class="table">
  11. <tbody>
  12. @if($Contactos->count())
  13. @foreach($Contactos as $Contactos1)
  14. <tr>
  15. <td>{{$Contactos1->idContactos}}</td>
  16. <td>{{$Contactos1->nombre}}</td>
  17. </tr>
  18. @endforeach
  19. @endif
  20. </tbody>
  21. </table>
  22. {{ $Contactos1->onEachSide(5)->links() }}
  23. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement