@extends('backend.layouts.master') @section('title') Book Discount @endsection @section('content')
@include('backend/includes/sidebar')
@include('backend/includes/header')

Book Discount

@if(count($errors) > 0)
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Book Discount Form
@foreach($discounts as $discount)
Cancel
@endforeach
@include('backend/includes/footer')
@endsection