Advertisement
Guest User

welcome.blade.php

a guest
Oct 1st, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.92 KB | None | 0 0
  1. @extends('books.layout.layout')
  2.     @section('content')
  3.         <h1 class="text-center" style="margin: 1rem;">Popularne książki</h1>
  4.         <hr>
  5.         <div class="row mx-auto">
  6.             @foreach($books as $book)
  7.             <div class="card float-left mx-auto" style="width: 20rem; margin: 1rem;">
  8.                 <img class="card-img" width="50px" src="uploads/{{$book->img}}" alt="Card image cap">
  9.                 <div class="card-body text-center">
  10.                     <h4 class="card-title ">{{$book->title}}</h4><a href><button type="button" class="btn btn-outline-info btn-info">{{$book->category}}</button></a> <button type="button" class="btn btn-outline-secondary" style="margin: 2%;">{{$book->author}}</button>
  11.                     </p>
  12.                     <a href="#" class="btn btn-primary">Szczegóły</a>
  13.                 </div>
  14.             </div>
  15.             @endforeach
  16.         </div>
  17.     @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement