@extends ('layouts.app') @section ('content')
{{ isset($stocktake->closing->stock_taker->name) ? $stocktake->closing->stock_taker->name : '' }} {{ isset($stocktake->closing->stock_taker->surname) ? $stocktake->closing->stock_taker->surname : '' }} {{ isset($stocktake->closing->created_at) ? '| '.$stocktake->closing->created_at : '' }} @if(isset($stocktake->closing->stock_take_time->title)) | {{ ($stocktake->closing->stock_take_time->title == 'Closing') ? 'Stocktake' : 'Verification'}} @endif
@if(isset($stocktake->opening)){{ isset($stocktake->opening->stock_taker->name) ? $stocktake->opening->stock_taker->name : '' }} {{ isset($stocktake->opening->stock_taker->surname) ? $stocktake->opening->stock_taker->surname : '' }} {{ isset($stocktake->opening->created_at) ? '| '.$stocktake->opening->created_at : '' }} @if(isset($stocktake->opening->stock_take_time->title)) | {{ ($stocktake->opening->stock_take_time->title == 'Closing') ? 'Stocktake' : 'Verification'}} @endif @if(isset($stocktake->modified_by)) Modified by {{ $stocktake->modified_by }} | {{ $stocktake->opening->updated_at }} @endif
@endif