@extends('layouts.app') @section('title', $pageTitle ?? 'CSR Costing') @push('stylesheets') @endpush @section('contents') CSR books {{ $book->name }} Ch. {{ $chapter->chapter_no }} {{ $chapter->name }} @if ($chapter->workType) Work type: {{ $chapter->workType->name }} @endif @php $chapterHeaderAction = ' Edit chapter' . ' Add section'; @endphp @foreach ($sections as $sec) {{ $sec->name }} Add item @csrf @method('DELETE') @endforeach @endsection @push('scripts') @endpush
Work type: {{ $chapter->workType->name }}