@extends('layouts.default_module') @section('module_name') Books @stop @section('add_btn') {!! Form::open(['method' => 'get', 'route' => ['books.create'], 'files'=>true]) !!} {!! Form::submit('Add', ['class' => 'btn btn-success pull-right']) !!} {!! Form::close() !!} @stop @section('table') Name En Name Ur Description Thumbnail Action @foreach($books as $b) {!! $b->name_en !!} {!! $b->name_ur !!} {!! $b->description !!} {!!link_to_action('Admin\BooksConstroller@edit', 'Edit', array($b->id), array('class' => 'badge bg-info'))!!} {!! Form::open(['method' => 'POST', 'route' => ['books.delete', $b->id]]) !!} Delete {!! Form::close() !!} @endforeach @stop @section('pagination') {!! $books->render() !!}
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!} {!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!} {!! Form::close() !!}
@stop