From f5a9d588aef5a43581b7ae3ebb50e60578dc520b Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Sun, 20 Jan 2019 16:27:24 -0700 Subject: [PATCH] Add admin instance view --- .../views/admin/instances/home.blade.php | 71 +++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 resources/views/admin/instances/home.blade.php diff --git a/resources/views/admin/instances/home.blade.php b/resources/views/admin/instances/home.blade.php new file mode 100644 index 000000000..752051b01 --- /dev/null +++ b/resources/views/admin/instances/home.blade.php @@ -0,0 +1,71 @@ +@extends('admin.partial.template') + +@section('section') +
+

Instances

+
+ +
+@if($instances->count() == 0) +
+

Warning

+

No instances were found.

+
+

Do you want to scan and populate instances from Profiles and Statuses?

+

+

+ @csrf + +
+

+@else + +
+ {{$instances->links()}} +
+@endif +@endsection + +@push('scripts') + +@endpush \ No newline at end of file