CourseWork/resources/views/grade-subject/edit.blade.php
2024-05-07 12:14:18 +04:00

9 lines
221 B
PHP

@extends('layouts.app')
@section('content')
@include('grade-subject.form', [
'route' => route('grades.subjects.update',
['grade' => $grade, 'subject' => $updateSubject]
), 'method' => 'PUT'])
@endsection