@extends('master')
@section('content')
<form method="post" action="/profile/editTo/{{ $worktask->id }}">
@csrf
@method('PATCH')
<table class="ui celled table">
<thead>
<tr><th>공정명</th>
<th>작성일</th>
<th>공수</th>
</tr></thead>
<tbody>
<tr>
<td data-label="Name">{{ $worktask->process }}</td>
<td data-label="Age">{{$worktask->created_at->format('m-d')}}</td>
<td data-label="Job">{{ $worktask->wt }}</td>
</tr>
</tbody>
</table>
<button class="fluid ui positive button">수정하기</button>
</form>
@endsection
'라라벨 > FORM' 카테고리의 다른 글
form에서 버튼만들어 전송하기 (0) | 2020.03.27 |
---|