3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/resources/views/status.blade.php

22 lines
733 B
PHP
Raw Normal View History

2021-06-27 19:01:43 +00:00
@extends('layouts.main')
@section('content')
2021-06-29 20:05:00 +00:00
<div class="wrapper">
<div class="container-fluid">
@php($data = \App\Status::loadData())
@if(!empty($data))
@foreach($data as $region)
@component('components.region', ['region' => $region])
@endcomponent
@endforeach
@else
<div class="col-xs-12 col-lg-4 col-lg-offset-4 col-md-8 col-md-offset-2">
@component('components.panel', ['title' => 'No Data'])
<p>No Regions with attractions found</p>
2021-06-29 20:05:00 +00:00
@endcomponent
</div>
2021-06-29 20:05:00 +00:00
@endif
</div>
</div>
@endsection