@extends('layout.master') @section('title','Book Publisher') @section('header')

Book Publishers

@endsection @section('content')

List of Book Publishers

@if(count($publishers)>0) @foreach($publishers as $key=>$publisher) @endforeach @endif
# Publisher Created At Action
{{ $key+1 }} {{ $publisher['publisher_name'] }} {{ $publisher['created_at'] }}
@endsection