@extends('layouts.backend.app')
@section('title')
Data Buku
@endsection
@section('content')
@if ($message = Session::get('success'))
@elseif($message = Session::get('error'))
@endif
|
No |
Kode Buku |
Judul |
Penerbit |
Penulis |
Kategori |
Action |
@foreach ($book as $key => $books)
|
{{$key+1}} |
{{$books->book_code}} |
{{$books->name}} |
{{$books->publisher->name}} |
{{$books->author->name}} |
{{$books->category->name}} |
Detail
|
@endforeach
@endsection