@extends('layouts.master') @section('title') {{ __('home.pending_stored_drafts') }} @stop @section('page-header') @endsection @section('content')
@forelse($myDrafts as $draft) @empty @endforelse
{{ __('home.draft_number') }} {{ __('home.receiving_branch') }} {{ __('home.receiving_employee') }} {{ __('home.total_cost') }} {{ __('home.save_date') }} {{ __('home.actions') }}
#{{ $draft->id }} {{ $draft->branchTo->name ?? __('home.unknown_branch') }} {{ $draft->userTo->name ?? __('home.unknown_employee') }} {{ number_format($draft->Totalcost, 2) }} {{ $draft->created_at->format('Y-m-d H:i') }} {{ __('home.complete_and_edit_draft') }}
{{ __('home.no_saved_drafts') }}
@endsection