@extends('layouts.location_app') @section('title', 'Drafts') @section('content')
Your Drafts Your drafts are only visible to you
@if($drafts->isEmpty())

You do not have any drafts saved.

@else {{-- --}} @foreach($drafts as $draft) {{-- --}} @endforeach
User NameForm Saved Actions
{{$draft->form->name}}

{{$draft->form->allow_drafts_off_site ? 'Off-site' : ''}}

@if (isset($draft->triggered_record_id))

Mandatory

@endif
@php $draft_link = url('/bespoke_form_v3/#!/submit-draft/' . $draft->id); $tri_record = $draft->triggered_record(); if (isset($tri_record) && !empty($tri_record)) { $draft_link .= '?linked_record=' . $draft->triggered_record_id; $draft_link .= '&cond_id=' . $tri_record['id']; $draft_link .= '&draft=1'; if ($tri_record['type'] == 1) { $draft_link .= '&external=1'; } else { $draft_link .= '&user=1'; $draft_link .= '&location_id=' . $draft->location_id; } }elseif(!isset($tri_record) && empty($tri_record)){ $draft_link .= '?user=1'; $draft_link .= '&location_id=' . $draft->location_id; $draft_link .= '&draft=1'; } @endphp
@endif
@endsection @section('scripts') {{-- --}} @endsection