@extends('layouts.app') @section('title', 'Version History') @section('content') @if(auth()->user()->user_type_id == 1) @if($versionHistory->isNotEmpty())

Version History

@foreach($versionHistory as $data)
V {{ $data['version_no'] }}
    @foreach($version_updates as $data2)
  • {!! $data2 !!}
  • @endforeach
@endforeach
@else

No Version History Available!!

@endif {{-- EDIT VERSION HISTORY --}} {{-- EDIT VERSION HISTORY --}} @else @include('error'); @endif @endsection @section('page_script') @endsection