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

Cover Options

@if(session()->has('success'))
{{ session()->get('success') }}
@endif
Cover Options List Add Cover Option
@foreach($cover_options as $cover_option) @endforeach
Sr. No. Cover Name Paper seq. Product ID Binding Type Min. Qty. Book Size Status Action
{{ $i++ }} {{ $cover_option->cover_name }} {{ $cover_option->paper_seq }} {{ $cover_option->product_id }} @if($cover_option->binding_type_id == null) ALL @else {{ $cover_option->name }} @endif {{ $cover_option->min_qty }} {{ $cover_option->book_size }}
@include('backend/includes/footer')
@endsection