From 3693ce343120e6608a38f27032780c9e5e2557ab Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Thu, 16 Jul 2020 06:46:20 +0100 Subject: [PATCH] Add footer to all dashboard pages --- config/adminlte.php | 3 +-- .../breadcrumbs/dashboard/footer.blade.php | 25 +++++++++++++++++++ .../administration/devtools.blade.php | 4 +++ .../administration/editform.blade.php | 4 +++ .../administration/editposition.blade.php | 4 +++ .../administration/formbuilder.blade.php | 4 +++ .../administration/formpreview.blade.php | 4 +++ .../dashboard/administration/forms.blade.php | 4 +++ .../administration/players.blade.php | 4 +++ .../administration/positions.blade.php | 4 +++ .../administration/staff-members.blade.php | 4 +++ .../application-rendering/apply.blade.php | 4 +++ .../dashboard/appmanagement/all.blade.php | 4 +++ .../appmanagement/interview.blade.php | 4 +++ .../appmanagement/outstandingapps.blade.php | 4 +++ .../appmanagement/peerreview.blade.php | 4 +++ resources/views/dashboard/dashboard.blade.php | 3 +++ .../dashboard/user/applications.blade.php | 3 +++ .../views/dashboard/user/directory.blade.php | 3 +++ .../user/profile/displayprofile.blade.php | 7 +++--- .../user/profile/useraccount.blade.php | 3 +++ .../user/profile/userprofile.blade.php | 3 +++ .../views/dashboard/user/viewapp.blade.php | 6 ++++- 23 files changed, 106 insertions(+), 6 deletions(-) create mode 100644 resources/views/breadcrumbs/dashboard/footer.blade.php diff --git a/config/adminlte.php b/config/adminlte.php index 4129740..e0913b9 100644 --- a/config/adminlte.php +++ b/config/adminlte.php @@ -527,7 +527,6 @@ return [ 'location' => 'https://cdn.jsdelivr.net/npm/fullcalendar@5.0.1/main.min.css' ] ] - ], - + ], ], ]; diff --git a/resources/views/breadcrumbs/dashboard/footer.blade.php b/resources/views/breadcrumbs/dashboard/footer.blade.php new file mode 100644 index 0000000..e94bfd7 --- /dev/null +++ b/resources/views/breadcrumbs/dashboard/footer.blade.php @@ -0,0 +1,25 @@ + diff --git a/resources/views/dashboard/administration/devtools.blade.php b/resources/views/dashboard/administration/devtools.blade.php index de5a554..a8b74a9 100644 --- a/resources/views/dashboard/administration/devtools.blade.php +++ b/resources/views/dashboard/administration/devtools.blade.php @@ -73,3 +73,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/administration/editform.blade.php b/resources/views/dashboard/administration/editform.blade.php index 81d8108..6dee177 100644 --- a/resources/views/dashboard/administration/editform.blade.php +++ b/resources/views/dashboard/administration/editform.blade.php @@ -101,3 +101,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/administration/editposition.blade.php b/resources/views/dashboard/administration/editposition.blade.php index 9cf256c..e5276b0 100644 --- a/resources/views/dashboard/administration/editposition.blade.php +++ b/resources/views/dashboard/administration/editposition.blade.php @@ -153,3 +153,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/administration/formbuilder.blade.php b/resources/views/dashboard/administration/formbuilder.blade.php index 7995024..4b97050 100644 --- a/resources/views/dashboard/administration/formbuilder.blade.php +++ b/resources/views/dashboard/administration/formbuilder.blade.php @@ -70,3 +70,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/administration/formpreview.blade.php b/resources/views/dashboard/administration/formpreview.blade.php index 57ace50..bbce9c5 100644 --- a/resources/views/dashboard/administration/formpreview.blade.php +++ b/resources/views/dashboard/administration/formpreview.blade.php @@ -77,3 +77,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/administration/forms.blade.php b/resources/views/dashboard/administration/forms.blade.php index 75d500a..1ce1af1 100644 --- a/resources/views/dashboard/administration/forms.blade.php +++ b/resources/views/dashboard/administration/forms.blade.php @@ -96,3 +96,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/administration/players.blade.php b/resources/views/dashboard/administration/players.blade.php index 10de156..7d4f886 100644 --- a/resources/views/dashboard/administration/players.blade.php +++ b/resources/views/dashboard/administration/players.blade.php @@ -176,3 +176,7 @@ I @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/administration/positions.blade.php b/resources/views/dashboard/administration/positions.blade.php index d707de4..703e62f 100644 --- a/resources/views/dashboard/administration/positions.blade.php +++ b/resources/views/dashboard/administration/positions.blade.php @@ -244,3 +244,7 @@ @endif @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/administration/staff-members.blade.php b/resources/views/dashboard/administration/staff-members.blade.php index fb86acb..e388225 100644 --- a/resources/views/dashboard/administration/staff-members.blade.php +++ b/resources/views/dashboard/administration/staff-members.blade.php @@ -98,3 +98,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/application-rendering/apply.blade.php b/resources/views/dashboard/application-rendering/apply.blade.php index 5d57f2b..b516063 100644 --- a/resources/views/dashboard/application-rendering/apply.blade.php +++ b/resources/views/dashboard/application-rendering/apply.blade.php @@ -126,3 +126,7 @@ @endif @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/appmanagement/all.blade.php b/resources/views/dashboard/appmanagement/all.blade.php index 5bc93d5..158f68e 100644 --- a/resources/views/dashboard/appmanagement/all.blade.php +++ b/resources/views/dashboard/appmanagement/all.blade.php @@ -241,3 +241,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/appmanagement/interview.blade.php b/resources/views/dashboard/appmanagement/interview.blade.php index 971b845..e290753 100644 --- a/resources/views/dashboard/appmanagement/interview.blade.php +++ b/resources/views/dashboard/appmanagement/interview.blade.php @@ -191,3 +191,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/appmanagement/outstandingapps.blade.php b/resources/views/dashboard/appmanagement/outstandingapps.blade.php index 5ac1095..5712a56 100644 --- a/resources/views/dashboard/appmanagement/outstandingapps.blade.php +++ b/resources/views/dashboard/appmanagement/outstandingapps.blade.php @@ -104,3 +104,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/appmanagement/peerreview.blade.php b/resources/views/dashboard/appmanagement/peerreview.blade.php index 236d23c..2de751b 100644 --- a/resources/views/dashboard/appmanagement/peerreview.blade.php +++ b/resources/views/dashboard/appmanagement/peerreview.blade.php @@ -92,3 +92,7 @@ @stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/dashboard.blade.php b/resources/views/dashboard/dashboard.blade.php index ff0274c..0dd8f7c 100644 --- a/resources/views/dashboard/dashboard.blade.php +++ b/resources/views/dashboard/dashboard.blade.php @@ -262,3 +262,6 @@ @stop +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/user/applications.blade.php b/resources/views/dashboard/user/applications.blade.php index 0894985..98ca7da 100644 --- a/resources/views/dashboard/user/applications.blade.php +++ b/resources/views/dashboard/user/applications.blade.php @@ -141,3 +141,6 @@ @stop +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/user/directory.blade.php b/resources/views/dashboard/user/directory.blade.php index 4c1f795..2fa0eb8 100644 --- a/resources/views/dashboard/user/directory.blade.php +++ b/resources/views/dashboard/user/directory.blade.php @@ -105,3 +105,6 @@ @endif @stop +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/user/profile/displayprofile.blade.php b/resources/views/dashboard/user/profile/displayprofile.blade.php index cac85c2..b39638b 100644 --- a/resources/views/dashboard/user/profile/displayprofile.blade.php +++ b/resources/views/dashboard/user/profile/displayprofile.blade.php @@ -405,7 +405,8 @@ - - - +@stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') @stop diff --git a/resources/views/dashboard/user/profile/useraccount.blade.php b/resources/views/dashboard/user/profile/useraccount.blade.php index 6e5fcc5..ebfd9e9 100644 --- a/resources/views/dashboard/user/profile/useraccount.blade.php +++ b/resources/views/dashboard/user/profile/useraccount.blade.php @@ -164,3 +164,6 @@ @stop +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/user/profile/userprofile.blade.php b/resources/views/dashboard/user/profile/userprofile.blade.php index 7021a99..f7afd4d 100644 --- a/resources/views/dashboard/user/profile/userprofile.blade.php +++ b/resources/views/dashboard/user/profile/userprofile.blade.php @@ -215,3 +215,6 @@ @stop +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop diff --git a/resources/views/dashboard/user/viewapp.blade.php b/resources/views/dashboard/user/viewapp.blade.php index 7bb2490..1a25864 100644 --- a/resources/views/dashboard/user/viewapp.blade.php +++ b/resources/views/dashboard/user/viewapp.blade.php @@ -500,4 +500,8 @@ @endif @endhasanyrole -@endsection +@stop + +@section('footer') + @include('breadcrumbs.dashboard.footer') +@stop