CourseWork/resources/views/grade-subject/edit.blade.php

9 lines
229 B
PHP
Raw Permalink Normal View History

2024-06-16 00:41:31 +04:00
@extends('layouts.application')
2024-05-07 12:14:18 +04:00
@section('content')
@include('grade-subject.form', [
'route' => route('grades.subjects.update',
['grade' => $grade, 'subject' => $updateSubject]
), 'method' => 'PUT'])
@endsection