diff options
author | Mateja <mail@matejamaric.com> | 2020-10-18 23:12:49 +0200 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-10-18 23:12:49 +0200 |
commit | 8977e39c47b4b17d57d36128cccf2a54caff10a2 (patch) | |
tree | 70ad6d1e5f5d703139b8225e27009eb190b1712f /resources | |
parent | 75e4ed82769143be8968edf9110e6e2fd5d85028 (diff) | |
download | yota-laravel-8977e39c47b4b17d57d36128cccf2a54caff10a2.tar.gz yota-laravel-8977e39c47b4b17d57d36128cccf2a54caff10a2.zip |
more views with tables
Diffstat (limited to 'resources')
-rw-r--r-- | resources/views/pages/activities.blade.php | 9 | ||||
-rw-r--r-- | resources/views/pages/callsigns.blade.php | 5 | ||||
-rw-r--r-- | resources/views/pages/posts.blade.php | 4 | ||||
-rw-r--r-- | resources/views/pages/reservations.blade.php | 13 |
4 files changed, 31 insertions, 0 deletions
diff --git a/resources/views/pages/activities.blade.php b/resources/views/pages/activities.blade.php index b4a9f19..6232a0c 100644 --- a/resources/views/pages/activities.blade.php +++ b/resources/views/pages/activities.blade.php @@ -1,4 +1,13 @@ @extends('layouts.app') @section('content') +<div class="table-responsive"> + <table class="table table-striped table-bordered"><!-- table-hover --> + <thead class="thead-dark"> + <tr><th>Operator</th><th>From</th><th>To</th><th>Special Callsign</th><th>Frequencies</th><th>QSO</th></tr> + </thead> + <tbody> + </tbody> + </table> +</div> @endsection() diff --git a/resources/views/pages/callsigns.blade.php b/resources/views/pages/callsigns.blade.php new file mode 100644 index 0000000..2afe0dd --- /dev/null +++ b/resources/views/pages/callsigns.blade.php @@ -0,0 +1,5 @@ +@extends('layouts.app') + +@section('content') + <strong>CALLSIGNS ADMINISTRATION</strong> +@endsection diff --git a/resources/views/pages/posts.blade.php b/resources/views/pages/posts.blade.php new file mode 100644 index 0000000..b4a9f19 --- /dev/null +++ b/resources/views/pages/posts.blade.php @@ -0,0 +1,4 @@ +@extends('layouts.app') + +@section('content') +@endsection() diff --git a/resources/views/pages/reservations.blade.php b/resources/views/pages/reservations.blade.php new file mode 100644 index 0000000..3901ed0 --- /dev/null +++ b/resources/views/pages/reservations.blade.php @@ -0,0 +1,13 @@ +@extends('layouts.app') + +@section('content') +<div class="table-responsive"> + <table class="table table-striped table-bordered"><!-- table-hover --> + <thead class="thead-dark"> + <tr><th>ID</th><th>Approved</th><th>Operator Callsign</th><th>QSO</th><th>From</th><th>To</th><th>Frequencies</th><th>Modes</th><th>Special Callsign</th><th>Operator Name</th><th>Operator Email</th><th>Operator Phone</th><th>Actions</th></tr> + </thead> + <tbody> + </tbody> + </table> +</div> +@endsection() |