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

Endsheet

@if(session()->has('success'))
{{ session()->get('success') }}
@endif
Endsheet List Add Endsheet
@foreach ($endsheets as $endsheet) @endforeach
Sr. No. Name Product ID Proof Sequence Size Is Default Status Action
{{ $i++ }} {{ $endsheet->name }} {{ $endsheet->product_id }} {{ $endsheet->proof_seq }} {{ ucfirst($endsheet->size) }} @if($endsheet->is_default == 'y') Yes @else No @endif
@include('backend/includes/footer')
@endsection