@extends('layouts.app')
@section('title')
{{ __('Version History') }}
@endsection
@section('breadcrumb')
@endsection
@section('content')
@can('create_version')
@endcan
@foreach ($versions as $version)
@foreach (explode(PHP_EOL, $version->description) as $item)
- {{ $item }}
@endforeach
@endforeach
@endsection