@extends('layout.master')
@section('title','Book Publisher')
@section('header')
@endsection
@section('content')
# |
Publisher |
Created At |
Action |
@if(count($publishers)>0)
@foreach($publishers as $key=>$publisher)
{{ $key+1 }} |
{{ $publisher['publisher_name'] }} |
{{ $publisher['created_at'] }} |
|
@endforeach
@endif
@endsection