From 739f2c86bfa178b93c41533ffea9dcd376ef2616 Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Sat, 29 Oct 2022 23:23:02 +0000 Subject: [PATCH] Move head to partial --- resources/views/no-trip.blade.php | 15 +-------------- resources/views/partials/head.blade.php | 14 ++++++++++++++ resources/views/past-trips.blade.php | 15 +-------------- resources/views/tracker.blade.php | 15 +-------------- 4 files changed, 17 insertions(+), 42 deletions(-) create mode 100644 resources/views/partials/head.blade.php diff --git a/resources/views/no-trip.blade.php b/resources/views/no-trip.blade.php index decb9aa..54dc420 100644 --- a/resources/views/no-trip.blade.php +++ b/resources/views/no-trip.blade.php @@ -1,19 +1,6 @@ - - - - - Tracking | Ben Goldsworthy - - - - - + @include('partials.head') diff --git a/resources/views/partials/head.blade.php b/resources/views/partials/head.blade.php new file mode 100644 index 0000000..449b354 --- /dev/null +++ b/resources/views/partials/head.blade.php @@ -0,0 +1,14 @@ + + + + + Tracking | Ben Goldsworthy + + + + + diff --git a/resources/views/past-trips.blade.php b/resources/views/past-trips.blade.php index 15a7609..30cc7fe 100644 --- a/resources/views/past-trips.blade.php +++ b/resources/views/past-trips.blade.php @@ -1,19 +1,6 @@ - - - - - Tracking | Ben Goldsworthy - - - - - + @include('partials.head');