From 852f6610f83c6c3445cbbd8f4f5e68c5b79fa733 Mon Sep 17 00:00:00 2001 From: drkthunder02 Date: Sun, 26 May 2019 23:26:35 -0500 Subject: [PATCH] laid out the views for the new item list functionality --- .../views/stocks/generalstocks.blade.php | 41 +++++++++++++++++++ .../views/stocks/stationstocks.blade.php | 33 +++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 resources/views/stocks/generalstocks.blade.php create mode 100644 resources/views/stocks/stationstocks.blade.php diff --git a/resources/views/stocks/generalstocks.blade.php b/resources/views/stocks/generalstocks.blade.php new file mode 100644 index 000000000..03c6865a3 --- /dev/null +++ b/resources/views/stocks/generalstocks.blade.php @@ -0,0 +1,41 @@ +@extends('layouts.b4') +@section('content') +
+
+
+ + Location + Items + Quantities + Date + + + @foreach() + + Station + Item Types + + Date + + @foreach() + + +
+ + +
+ + +
+ + +
+ + + @endforeach + @endforeach + +
+
+
+@endsection diff --git a/resources/views/stocks/stationstocks.blade.php b/resources/views/stocks/stationstocks.blade.php new file mode 100644 index 000000000..221d32b4c --- /dev/null +++ b/resources/views/stocks/stationstocks.blade.php @@ -0,0 +1,33 @@ +@extends('layouts.b4') +@section('content') +
+ +
+
+
+
+

Station Name


+

Date Updated

+
+
+
+ + Location + Items + Quantities + + + @foreach($items as $item) + + + Item Name + Quantity + + @endforeach + +
+
+
+
+
+@endsection \ No newline at end of file