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

Book Sizes

@if(session()->has('success'))
{{ session()->get('success') }}
@endif
Book Sizes List Add Book Size
@foreach ($sizes as $sizes) @endforeach
Sr. No. Width Height Size Type Orientation Book Size Status Action
{{ $i++ }} @if($sizes->size_type == 'custom')Up to @endif {{ $sizes->width }} @if($sizes->size_type == 'custom')Up to @endif {{ $sizes->height }} {{ ucfirst($sizes->size_type) }} {{ ucfirst($sizes->orientation) }} {{ ucfirst($sizes->book_size) }}
@include('backend/includes/footer')
@endsection