@extends('layouts.app') @section('title',($document->exists?'Edit':'Create').' '.ucfirst($type).' | BASCORE') @section('content') @php $isQuote = $type === 'quotation'; $route = $document->exists ? route($isQuote ? 'quotations.update' : 'invoices.update',$document) : route($isQuote ? 'quotations.store' : 'invoices.store'); $lines = old('items', $document->exists ? $document->items->toArray() : [['description'=>'','quantity'=>1,'unit_price'=>0,'discount'=>0,'by_others'=>false,'vat_rate'=>$setting->default_vat_percentage]]); @endphp