@extends('layouts.app') @section('content')

編輯專案:{{ $project['name'] }}

返回專案
@if ($errors->any())
{{ $errors->first() }}
@endif
編輯專案資訊
@csrf @method('PUT')
Identifier 建立後無法修改
@php $currentTrackerIds = collect($project['trackers'] ?? [])->pluck('id')->toArray(); @endphp
@foreach ($trackers as $tracker)
@endforeach

@endsection