@extends('layouts.admin') @section('header','Scenarios') @section('breadcrumbs')
  • Home
  • Scenarios
  • @stop @section('content')
    @include('messages')
    @if(count($scenarios))
    @foreach ($scenarios as $scenario) @endforeach
    Name Updated At
    {{ $scenario->name }} {{ date('d-m-Y H:i:s',strtotime($scenario->updated_at)) }}
    @else

    Please create a new Scenario by clicking HERE

    @endif
    @stop