Commit 4c06cba0 authored by Nikola Chuchukovski's avatar Nikola Chuchukovski
Browse files

Merge branch 'gift-cards' into 'dev'

fix

See merge request !51
parents 033ede78 53941e7e
Showing with 9 additions and 7 deletions
+9 -7
......@@ -8,8 +8,7 @@
</div>
@endif
<div class="flex justify-between items-center pt-3 px-3">
<h2 class="font-bold pt-2 pl-2">All Costom Orders</h2>
<h2 class="font-bold pt-2 pl-2">All Custom Orders</h2>
</div>
<div class="p-3">
<div class="relative overflow-x-auto shadow-md sm:rounded-lg">
......
......@@ -153,7 +153,7 @@
<div class="hidden space-x-8 sm:-my-px sm:ms-10 sm:flex hover:underline-black pt-3">
<x-nav-link :href="route('custom_order.index')" :active="request()->routeIs('custom_order.index')">
{{ __('Costom Made Orders') }}
{{ __('Custom Made Orders') }}
</x-nav-link>
</div>
......@@ -216,7 +216,7 @@
<div class="hidden space-x-8 sm:-my-px sm:ms-10 sm:flex hover:underline-black pt-3">
<x-nav-link :href="route('dashboard')" :active="request()->routeIs('dashboard')">
{{ __('Costom Made Orders') }}
{{ __('Custom Made Orders') }}
</x-nav-link>
</div>
......@@ -291,7 +291,7 @@
</div>
<div class="pt-2 pb-3 space-y-1">
<x-responsive-nav-link :href="route('dashboard')" :active="request()->routeIs('dashboard')">
{{ __('Costom Made Orders') }}
{{ __('Custom Made Orders') }}
</x-responsive-nav-link>
</div>
......
......@@ -10,8 +10,7 @@ use App\Http\Controllers\Api\CustomOrderController;
use App\Http\Controllers\Admin\MaintenanceController;
use App\Http\Controllers\Api\FaqController;
use App\Http\Controllers\Api\GalleryController;
use App\Models\Product;
use App\Models\Type;
/*
|--------------------------------------------------------------------------
......@@ -51,3 +50,7 @@ Route::get('gallery', [GalleryController::class, 'index'])->name('gallery.index'
// get latest six images from gallery
Route::get('gallery/latest', [GalleryController::class, 'latestSix'])->name('gallery.latest');
//Customer Register/login
Route::post('register', [AuthController::class, 'registerUser'])->name('register');
Route::post('login', [AuthController::class, 'loginUser'])->name('login');
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment