changesDone
This commit is contained in:
15
app/Http/Controllers/Admin/AboutUsController.php
Normal file
15
app/Http/Controllers/Admin/AboutUsController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class AboutUsController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_cms.manage_aboutus.manage_aboutsus');
|
||||
|
||||
}
|
||||
}
|
||||
15
app/Http/Controllers/Admin/DashboardController.php
Normal file
15
app/Http/Controllers/Admin/DashboardController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class DashboardController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
|
||||
return view('Admin.dashboard');
|
||||
}
|
||||
}
|
||||
14
app/Http/Controllers/Admin/FaqController.php
Normal file
14
app/Http/Controllers/Admin/FaqController.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class FaqController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_cms.manage_faq.manage_faq');
|
||||
}
|
||||
}
|
||||
15
app/Http/Controllers/Admin/ManageContactUsController.php
Normal file
15
app/Http/Controllers/Admin/ManageContactUsController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageContactUsController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_contact_us.manage_contact');
|
||||
|
||||
}
|
||||
}
|
||||
15
app/Http/Controllers/Admin/ManageCustomerController.php
Normal file
15
app/Http/Controllers/Admin/ManageCustomerController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageCustomerController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
|
||||
return view('Admin.pages.manage_users.manage_customer.customer');
|
||||
}
|
||||
}
|
||||
15
app/Http/Controllers/Admin/ManageFeedbackController.php
Normal file
15
app/Http/Controllers/Admin/ManageFeedbackController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageFeedbackController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_feedback.manage_feedback');
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageNewsAndArticlesController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_cms.manage_new.manage_news');
|
||||
|
||||
}
|
||||
}
|
||||
15
app/Http/Controllers/Admin/ManageNewsLetterController.php
Normal file
15
app/Http/Controllers/Admin/ManageNewsLetterController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageNewsLetterController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_cms.manage_newsletter.manage_newletter');
|
||||
|
||||
}
|
||||
}
|
||||
15
app/Http/Controllers/Admin/ManageNotificationsController.php
Normal file
15
app/Http/Controllers/Admin/ManageNotificationsController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageNotificationsController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_notification.manage_notification');
|
||||
|
||||
}
|
||||
}
|
||||
15
app/Http/Controllers/Admin/ManagePassportController.php
Normal file
15
app/Http/Controllers/Admin/ManagePassportController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManagePassportController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_passsport.manage_passport');
|
||||
|
||||
}
|
||||
}
|
||||
20
app/Http/Controllers/Admin/ManageProfileController.php
Normal file
20
app/Http/Controllers/Admin/ManageProfileController.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
use App\Models\IamPrincipal;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class ManageProfileController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
// $get_user = Auth::guard('admin')->user();
|
||||
// dd($get_user);
|
||||
// $user = IamPrincipal::find($get_user->id);
|
||||
$user = IamPrincipal::find(1);
|
||||
return view('Admin.pages.manage_profile.manage_profile',compact('user'));
|
||||
}
|
||||
}
|
||||
15
app/Http/Controllers/Admin/ManageReportsController.php
Normal file
15
app/Http/Controllers/Admin/ManageReportsController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageReportsController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_reports.manage_reports');
|
||||
|
||||
}
|
||||
}
|
||||
14
app/Http/Controllers/Admin/ManageRestrauntController.php
Normal file
14
app/Http/Controllers/Admin/ManageRestrauntController.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageRestrauntController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
return view('Admin.pages.manage_users.manage_restaurants.manage_restaurants');
|
||||
|
||||
}
|
||||
}
|
||||
13
app/Http/Controllers/Admin/ManageSubAdminController.php
Normal file
13
app/Http/Controllers/Admin/ManageSubAdminController.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageSubAdminController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
return view('Admin.pages.manage_users.manage_sub_admin.manage_subadmin');
|
||||
}
|
||||
}
|
||||
14
app/Http/Controllers/Admin/ManageVouchersController.php
Normal file
14
app/Http/Controllers/Admin/ManageVouchersController.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class ManageVouchersController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
return view('Admin.pages.manage_voucher.manage_voucher');
|
||||
|
||||
}
|
||||
}
|
||||
14
app/Http/Controllers/Admin/PrivacyPolicyController.php
Normal file
14
app/Http/Controllers/Admin/PrivacyPolicyController.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class PrivacyPolicyController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_cms.manage_privacy.manage_privacy');
|
||||
}
|
||||
}
|
||||
15
app/Http/Controllers/Admin/TermsController.php
Normal file
15
app/Http/Controllers/Admin/TermsController.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Admin;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class TermsController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
|
||||
return view('Admin.pages.manage_cms.manage_terms.manage_terms');
|
||||
|
||||
}
|
||||
}
|
||||
668
resources/views/Admin/dashboard.blade.php
Normal file
668
resources/views/Admin/dashboard.blade.php
Normal file
@@ -0,0 +1,668 @@
|
||||
@extends('Admin.layouts.master')
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'dashboard';
|
||||
@endphp
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Dashboard</h6>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 d-flex align-items-center gap-3 p-0 mb-4">
|
||||
<div class="col-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5>No of Customers</h5>
|
||||
<h2 class="m-0 font-weight-bold">08</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
|
||||
<ol class="carousel-indicators m-0">
|
||||
<li data-target="#carouselExampleIndicators" data-slide-to="0"
|
||||
class="active"></li>
|
||||
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
|
||||
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
|
||||
</ol>
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
<h5>Passports Live Now</h5>
|
||||
<h2 class="m-0 font-weight-bold">Cheers to Summer</h2>
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<h5>Passports Live Now</h5>
|
||||
<h2 class="m-0 font-weight-bold">Cheers to Summer</h2>
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<h5>Passports Live Now</h5>
|
||||
<h2 class="m-0 font-weight-bold">Cheers to Summer</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5>No of Restaurants</h5>
|
||||
<h2 class="m-0 font-weight-bold">05</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 d-flex align-items-center p-0 mb-4">
|
||||
<div class="col-md-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="d-flex justify-content-between align-items-center mb-3">
|
||||
<h5>User Graph</h5>
|
||||
<select class="form-control w-25" name="" id="">
|
||||
<option value="" selected>Monthly</option>
|
||||
<option value="">Quarterly</option>
|
||||
<option value="">Yearly</option>
|
||||
</select>
|
||||
</div>
|
||||
<div id="user-chart">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="d-flex justify-content-between align-items-center mb-3">
|
||||
<h5>Sales Graph</h5>
|
||||
<select class="form-control w-25" name="" id="">
|
||||
<option value="" selected>Monthly</option>
|
||||
<option value="">Quarterly</option>
|
||||
<option value="">Yearly</option>
|
||||
</select>
|
||||
</div>
|
||||
<div id="sales-chart">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-12 d-flex p-0 mb-3">
|
||||
<div class="col-md-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5 class="text-start">Recent Transactions</h5>
|
||||
<div class="d-flex align-items-center justify-content-between mb-2">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="transcation-list">
|
||||
<i class="fa fa-picture-o" aria-hidden="true"></i>
|
||||
</div>
|
||||
<div>
|
||||
<label class="m-0" for="">Jennifer Lawrence</label>
|
||||
<h6 class="font-weight-bold">Cheers to the Summer</h6>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h6 class="font-weight-bold">$500</h6>
|
||||
</div>
|
||||
</div>
|
||||
<div class="d-flex align-items-center justify-content-between mb-2">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="transcation-list">
|
||||
<i class="fa fa-picture-o" aria-hidden="true"></i>
|
||||
</div>
|
||||
<div>
|
||||
<label class="m-0" for="">Jennifer Lawrence</label>
|
||||
<h6 class="font-weight-bold">Cheers to the Summer</h6>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h6 class="font-weight-bold">$500</h6>
|
||||
</div>
|
||||
</div>
|
||||
<div class="d-flex align-items-center justify-content-between mb-2">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="transcation-list">
|
||||
<i class="fa fa-picture-o" aria-hidden="true"></i>
|
||||
</div>
|
||||
<div>
|
||||
<label class="m-0" for="">Jennifer Lawrence</label>
|
||||
<h6 class="font-weight-bold">Cheers to the Summer</h6>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<h6 class="font-weight-bold">$500</h6>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<h5 class="text-start">Locations</h5>
|
||||
<img src="../src/assets/img/map.svg" width="100%" height="173px" alt="">
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12 layout-spacing">
|
||||
<div class="widget widget-six">
|
||||
<div class="widget-heading">
|
||||
<div class="task-action">
|
||||
<div class="user-details">
|
||||
<img src="../src/assets/img/user-2-svgrepo-com.svg" />
|
||||
<h3>Welcome ,</h3>
|
||||
<h4>Kartikey Gautam</h4>
|
||||
</div>
|
||||
<div class="row w-100">
|
||||
<div class="col-md-4 col-sm-12 layout-spacing pb-0">
|
||||
<div data-draggable="true"
|
||||
class="card simple-title-task ui-sortable-handle">
|
||||
<div class="card-body">
|
||||
<div class="task-header">
|
||||
<div class="order-summary">
|
||||
<div class="summary-list">
|
||||
<div class="w-icon">
|
||||
<img class="img1"
|
||||
src="../src/assets/img/patient(1).svg" />
|
||||
</div>
|
||||
<div class="w-summary-details">
|
||||
<div class="w-summary-info">
|
||||
<h6>Total patients</h6>
|
||||
<p class="summary-count">50</p>
|
||||
</div>
|
||||
|
||||
<div class="w-summary-stats">
|
||||
<div class="progress">
|
||||
<div class="progress-bar bg-gradient-success"
|
||||
role="progressbar" style="width: 50%"
|
||||
aria-valuenow="50" aria-valuemin="0"
|
||||
aria-valuemax="100"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-summary-info mt-0">
|
||||
<p class="summary-text">50 % increase in 30 days
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4 col-sm-12 layout-spacing pb-0">
|
||||
<div data-draggable="true"
|
||||
class="card simple-title-task ui-sortable-handle">
|
||||
<div class="card-body">
|
||||
<div class="task-header">
|
||||
<div class="order-summary">
|
||||
<div class="summary-list">
|
||||
<div class="w-icon">
|
||||
<img class="img2"
|
||||
src="../src/assets/img/heart-add(1).svg" />
|
||||
</div>
|
||||
<div class="w-summary-details">
|
||||
|
||||
<div class="w-summary-info">
|
||||
<h6>Total caregiver</h6>
|
||||
<p class="summary-count">80</p>
|
||||
</div>
|
||||
|
||||
<div class="w-summary-stats">
|
||||
<div class="progress">
|
||||
<div class="progress-bar bg-gradient-warning"
|
||||
role="progressbar" style="width: 80%"
|
||||
aria-valuenow="80" aria-valuemin="0"
|
||||
aria-valuemax="100"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-summary-info mt-0">
|
||||
<p class="summary-text">30 % increase in 30 days
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 col-sm-12 layout-spacing pb-0">
|
||||
<div data-draggable="true"
|
||||
class="card simple-title-task ui-sortable-handle">
|
||||
<div class="card-body">
|
||||
<div class="task-header">
|
||||
<div class="order-summary">
|
||||
<div class="summary-list">
|
||||
<div class="w-icon">
|
||||
<img class="img3"
|
||||
src="../src/assets/img/download-cloud.svg" />
|
||||
</div>
|
||||
<div class="w-summary-details">
|
||||
|
||||
<div class="w-summary-info">
|
||||
<h6>App downloads</h6>
|
||||
<p class="summary-count">40</p>
|
||||
</div>
|
||||
|
||||
<div class="w-summary-stats">
|
||||
<div class="progress">
|
||||
<div class="progress-bar bg-gradient-secondary"
|
||||
role="progressbar" style="width: 40%"
|
||||
aria-valuenow="40" aria-valuemin="0"
|
||||
aria-valuemax="100"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-summary-info mt-0">
|
||||
<p class="summary-text">15 % increase in 30 days
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div> -->
|
||||
<!-- <div class="col-xl-12 col-lg-4 col-md-4 col-sm-4 col-12 layout-spacing">
|
||||
<div class="widget widget-one_hybrid widget-engagement">
|
||||
<div class="widget-heading">
|
||||
<div class="w-title">
|
||||
<div class="grpah-details">
|
||||
<p class="w-value">New patients</p>
|
||||
<h5 class="">%20 High than last monthy</h5>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="graph2">
|
||||
<div class="grpah-details2">
|
||||
<strong><span>100</span></strong>
|
||||
<span>Overall</span>
|
||||
</div>
|
||||
<div class="right-divider"></div>
|
||||
<div class="grpah-details2">
|
||||
<strong><span>50</span></strong>
|
||||
<span>Monthly</span>
|
||||
</div>
|
||||
<div class="right-divider"></div>
|
||||
<div class="grpah-details2">
|
||||
<strong><span>15</span></strong>
|
||||
<span>Daily</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="widget-content">
|
||||
<div class="w-chart">
|
||||
<div id="hybrid_followers3"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8">
|
||||
<div class="index-card">
|
||||
<div class="grpah-details">
|
||||
<p class="w-value">New patients</p>
|
||||
<a href="manage-patient">View All</a>
|
||||
</div>
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<tr>
|
||||
<th class="text-start">Name</th>
|
||||
<th>Email address</th>
|
||||
<th>Contact Number</th>
|
||||
<th>Caregiver</th>
|
||||
<th>Subscription Plan</th>
|
||||
<th class="no-content">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td class="text-start">Raj Shinde</td>
|
||||
<td>rajshinde9@gmail.com</td>
|
||||
<td>+5624878954</td>
|
||||
<td>Kartikey Gautam</td>
|
||||
<td>Active</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View Details</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<img src="../src/assets/img/download.svg" />
|
||||
<span>Download Data</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#suspend-modal">
|
||||
<img src="../src/assets/img/stop.svg" />
|
||||
<span>Suspend Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-start">Raj Shinde</td>
|
||||
<td>rajshinde9@gmail.com</td>
|
||||
<td>+5624878954</td>
|
||||
<td>Kartikey Gautam</td>
|
||||
<td>Active</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View Details</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<img src="../src/assets/img/download.svg" />
|
||||
<span>Download Data</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#suspend-modal">
|
||||
<img src="../src/assets/img/stop.svg" />
|
||||
<span>Suspend Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-start">Raj Shinde</td>
|
||||
<td>rajshinde9@gmail.com</td>
|
||||
<td>+5624878954</td>
|
||||
<td>Kartikey Gautam</td>
|
||||
<td>Active</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View Details</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<img src="../src/assets/img/download.svg" />
|
||||
<span>Download Data</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#suspend-modal">
|
||||
<img src="../src/assets/img/stop.svg" />
|
||||
<span>Suspend Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-start">Raj Shinde</td>
|
||||
<td>rajshinde9@gmail.com</td>
|
||||
<td>+5624878954</td>
|
||||
<td>Kartikey Gautam</td>
|
||||
<td>Active</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View Details</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<img src="../src/assets/img/download.svg" />
|
||||
<span>Download Data</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#suspend-modal">
|
||||
<img src="../src/assets/img/stop.svg" />
|
||||
<span>Suspend Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-start">Raj Shinde</td>
|
||||
<td>rajshinde9@gmail.com</td>
|
||||
<td>+5624878954</td>
|
||||
<td>Kartikey Gautam</td>
|
||||
<td>Active</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View Details</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="#">
|
||||
<img src="../src/assets/img/download.svg" />
|
||||
<span>Download Data</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#suspend-modal">
|
||||
<img src="../src/assets/img/stop.svg" />
|
||||
<span>Suspend Patient</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('section_script')
|
||||
<script>
|
||||
$('#zero-config1').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
|
||||
document.addEventListener("DOMContentLoaded", function () {
|
||||
|
||||
// ------------ User chart starts ------------
|
||||
|
||||
// Data for the chart
|
||||
var userChartData = [
|
||||
{
|
||||
name: 'Line 1',
|
||||
data: [30, 40, 85, 50, 39, 60, 70, 91, 125, 70, 50, 80]
|
||||
},
|
||||
{
|
||||
name: 'Line 2',
|
||||
data: [20, 35, 15, 55, 60, 100, 80, 95, 110, 50, 30, 40]
|
||||
}
|
||||
];
|
||||
|
||||
// Chart options
|
||||
var userOptions = {
|
||||
chart: {
|
||||
type: 'line',
|
||||
zoom: {
|
||||
enabled: false // Disable Zoom and Pan
|
||||
},
|
||||
toolbar: {
|
||||
show: false // Hide the download button
|
||||
}
|
||||
},
|
||||
series: userChartData,
|
||||
xaxis: {
|
||||
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
|
||||
},
|
||||
stroke: {
|
||||
curve: 'smooth',
|
||||
width: [4, 4]
|
||||
}
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var userChart = new ApexCharts(document.querySelector("#user-chart"), userOptions);
|
||||
userChart.render();
|
||||
|
||||
// --------- User chart ends ------------
|
||||
|
||||
|
||||
// --------- Sales chart starts ------------
|
||||
|
||||
var salesChartData = [
|
||||
{
|
||||
name: 'Bar Line',
|
||||
data: [30, 60, 35, 20, 49, 90, 70, 91, 125, 44, 47, 67]
|
||||
}
|
||||
];
|
||||
|
||||
// Chart options
|
||||
var salesOptions = {
|
||||
chart: {
|
||||
type: 'bar',
|
||||
zoom: {
|
||||
enabled: false // Disable Zoom and Pan
|
||||
},
|
||||
toolbar: {
|
||||
show: false // Hide the download button
|
||||
}
|
||||
},
|
||||
series: salesChartData,
|
||||
xaxis: {
|
||||
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
|
||||
},
|
||||
plotOptions: {
|
||||
bar: {
|
||||
columnWidth: '30%' // Adjust the bar width as needed
|
||||
}
|
||||
},
|
||||
dataLabels: {
|
||||
enabled: false // Hide the values on the bars
|
||||
}
|
||||
};
|
||||
|
||||
// Create the chart
|
||||
var salesChart = new ApexCharts(document.querySelector("#sales-chart"), salesOptions);
|
||||
salesChart.render();
|
||||
|
||||
// --------- Sales chart ends ------------
|
||||
});
|
||||
|
||||
</script>
|
||||
@endsection
|
||||
77
resources/views/Admin/footer.blade.php
Normal file
77
resources/views/Admin/footer.blade.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<div class="footer-wrapper">
|
||||
<div class="footer-section f-section-1">
|
||||
<p class="">Copyright © <span class="dynamic-year">2022</span>All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
<script src="../layouts/modern-light-menu/loader.js"></script>
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.5/jquery.validate.min.js"></script>
|
||||
<script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script>
|
||||
<script type="text/javascript" src="https://cdn.datatables.net/1.13.4/js/jquery.dataTables.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/apexcharts/3.37.3/apexcharts.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.21/js/jquery.dataTables.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
|
||||
<script src="{{ asset('assets/plugins/src/global/vendors.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/bootstrap/js/bootstrap.bundle.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/perfect-scrollbar/perfect-scrollbar.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/mousetrap/mousetrap.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/waves/waves.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/layouts/modern-light-menu/app.js')}}"></script>
|
||||
<script src="{{ asset('assets/layouts/collapsible-menu/app.js')}}"></script>
|
||||
<script src="{{ asset('assets/js/dashboard/dash_1.js')}}"></script>
|
||||
<script src="{{ asset('assets/js/custom.js')}}"></script>
|
||||
<script src="{{ asset('assets/js/scrollspyNav.js')}}"></script>
|
||||
<script src="{{ asset('assets/js/dashboard/dash_2.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/tagify/tagify.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/tagify/custom-tagify.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/filepond/filepond.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/filepond/FilePondPluginFileValidateType.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/filepond/FilePondPluginImageExifOrientation.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/filepond/FilePondPluginImagePreview.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/filepond/FilePondPluginImageCrop.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/filepond/FilePondPluginImageResize.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plgins/src/filepond/FilePondPluginImageTransform.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/filepond/filepondPluginFileValidateSize.min.js')}}"></script>
|
||||
<script src="{{ asset('assets/plugins/src/filepond/custom-filepond.js')}}"></script>
|
||||
<script src="https://cdn.ckeditor.com/4.8.0/full-all/ckeditor.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.0/jquery.validate.js"></script>
|
||||
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.5/jquery.validate.min.js" integrity="sha512-rstIgDs0xPgmG6RX1Aba4KV5cWJbAMcvRCVmglpam9SoHZiUCyQVDdH2LPlxoHtrv17XWblE/V/PP+Tr04hbtA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||
|
||||
<!-- added by abhishek -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
|
||||
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
|
||||
<script src="{{asset('assets/plugins/src/table/datatable/datatables.js')}}"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/js/select2.min.js" integrity="sha512-2ImtlRlf2VVmiGZsjm9bEyhjGW4dU7B6TNwh/hx/iSByxNENtj3WVE6o/9Lj4TJeVXPi4bnOIMXFIJJAeufa0A==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||
|
||||
|
||||
<!-- Custom Js Start Here -->
|
||||
@yield('section_script')
|
||||
<script src="{{ asset('assets/js/admin/dashboard/main.js')}}"></script>
|
||||
|
||||
<script>
|
||||
var dropdown = document.getElementsByClassName("dropdown-btn-users");
|
||||
var i;
|
||||
|
||||
for (i = 0; i < dropdown.length; i++) {
|
||||
dropdown[i].addEventListener("click", function() {
|
||||
this.classList.toggle("active");
|
||||
var dropdownContent = this.nextElementSibling;
|
||||
if (dropdownContent.style.display === "block") {
|
||||
dropdownContent.style.display = "none";
|
||||
} else {
|
||||
dropdownContent.style.display = "block";
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</script>
|
||||
<!-- Custom Js End Here -->
|
||||
</body>
|
||||
|
||||
</html>
|
||||
45
resources/views/Admin/header.blade.php
Normal file
45
resources/views/Admin/header.blade.php
Normal file
@@ -0,0 +1,45 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
|
||||
<title>Cheers To Seasons</title>
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('public/assets/img/seasons_logo.png')}}" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
|
||||
<link href="../layouts/modern-light-menu/css/light/loader.css" rel="stylesheet" type="text/css" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.4/css/jquery.dataTables.min.css" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.1.4/toastr.css" >
|
||||
<link href="{{ asset('assets/bootstrap/css/bootstrap.min.css')}}" rel="stylesheet" type="text/css" />
|
||||
<link href="../layouts/modern-light-menu/css/light/plugins.css" rel="stylesheet" type="text/css" />
|
||||
<link href="{{ asset('assets/plugins/src/apex/apexcharts.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('assets/css/light/dashboard/dash_1.css')}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{ asset('assets/css/light/custom.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('assets/css/light/sidebar.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('assets/css/light/main.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('assets/css/light/structure.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('assets/css/light/scrollspyNav.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('assets/css/light/components/list-group.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('assets/css/light/dashboard/dash_2.css')}}" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="{{asset('assets/plugins/src/tagify/tagify.css')}}">
|
||||
<link rel="stylesheet" type="text/css" href="{{asset('assets/plugins/css/light/tagify/custom-tagify.css')}}">
|
||||
<link rel="stylesheet" href="{{asset('assets/plugins/src/filepond/filepond.min.css')}}">
|
||||
<link rel="stylesheet" href="{{asset('assets/plugins/src/filepond/FilePondPluginImagePreview.min.css')}}">
|
||||
<link href="{{asset('assets/plugins/css/light/filepond/custom-filepond.css')}}" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="{{asset('assets/plugins/src/table/datatable/datatables.css')}}">
|
||||
<link rel="sty lesheet" type="text/css" href="{{asset('assets/plugins/css/light/table/datatable/dt-global_style.css')}}">
|
||||
<link rel="stylesheet" type="text/css" href="{{asset('assets/plugins/css/light/table/datatable/custom_dt_custom.css')}}">
|
||||
<!-- added by abhishek -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
|
||||
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.13/css/select2.min.css" integrity="sha512-nMNlpuaDPrqlEls3IX/Q56H36qvBASwb3ipuo3MxeWbsQB1881ox0cRv7UPTgBlriqoynt35KjEwgGUeUXIPnw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
|
||||
<script>
|
||||
url_path = "{{url('/')}}";
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body class="layout-boxed">
|
||||
106
resources/views/Admin/layouts/app_login.blade.php
Normal file
106
resources/views/Admin/layouts/app_login.blade.php
Normal file
@@ -0,0 +1,106 @@
|
||||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no">
|
||||
<title>@yield('title')</title>
|
||||
<link rel="icon" type="image/x-icon" href="{{ asset('public/assets/img/seasons_logo.png')}}" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" />
|
||||
<link href="../layouts/modern-light-menu/css/light/loader.css" rel="stylesheet" type="text/css" />
|
||||
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700" rel="stylesheet">
|
||||
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.4/css/jquery.dataTables.min.css" />
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.1.4/toastr.css" >
|
||||
<link href="{{ asset('public/assets/bootstrap/css/bootstrap.min.css')}}" rel="stylesheet" type="text/css" />
|
||||
<link href="../layouts/modern-light-menu/css/light/plugins.css" rel="stylesheet" type="text/css" />
|
||||
<link href="{{ asset('public/assets/plugins/src/apex/apexcharts.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('public/assets/css/light/dashboard/dash_1.css')}}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{ asset('public/assets/css/light/custom.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('public/assets/css/light/sidebar.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('public/assets/css/light/main.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('public/assets/css/light/structure.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('public/assets/css/light/scrollspyNav.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('public/assets/css/light/components/list-group.css')}}" rel="stylesheet" type="text/css">
|
||||
<link href="{{ asset('public/assets/css/light/dashboard/dash_2.css')}}" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="{{asset('public/assets/plugins/src/tagify/tagify.css')}}">
|
||||
<link rel="stylesheet" type="text/css" href="{{asset('public/assets/plugins/css/light/tagify/custom-tagify.css')}}">
|
||||
<link rel="stylesheet" href="{{asset('public/assets/plugins/src/filepond/filepond.min.css')}}">
|
||||
<link rel="stylesheet" href="{{asset('public/assets/plugins/src/filepond/FilePondPluginImagePreview.min.css')}}">
|
||||
<link href="{{asset('public/assets/plugins/css/light/filepond/custom-filepond.css')}}" rel="stylesheet" type="text/css" />
|
||||
<link rel="stylesheet" type="text/css" href="{{asset('public/assets/plugins/src/table/datatable/datatables.css')}}">
|
||||
<link rel="sty lesheet" type="text/css" href="{{asset('public/assets/plugins/css/light/table/datatable/dt-global_style.css')}}">
|
||||
<link rel="stylesheet" type="text/css" href="{{asset('public/assets/plugins/css/light/table/datatable/custom_dt_custom.css')}}">
|
||||
<!-- added by abhishek -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/flatpickr/dist/flatpickr.min.css">
|
||||
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
|
||||
<script>
|
||||
url_path = "{{url('/')}}";
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body class="layout-boxed">
|
||||
|
||||
<!-- BEGIN LOADER -->
|
||||
<div id="load_screen">
|
||||
<div class="loader">
|
||||
<div class="loader-content">
|
||||
<div class="spinner-grow align-self-center"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END LOADER -->
|
||||
|
||||
<div class="auth-container d-flex signup">
|
||||
@yield('content')
|
||||
</div>
|
||||
|
||||
<div class="footer-wrapper">
|
||||
<div class="footer-section f-section-1">
|
||||
<p class="">Copyright © <span class="dynamic-year">2022</span>All rights reserved.</p>
|
||||
</div>
|
||||
</div>
|
||||
@yield('scripts')
|
||||
<script src="../layouts/modern-light-menu/loader.js"></script>
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://code.jquery.com/jquery-3.6.4.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.5/jquery.validate.min.js"></script>
|
||||
<script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script>
|
||||
<script type="text/javascript" src="https://cdn.datatables.net/1.13.4/js/jquery.dataTables.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/apexcharts/3.37.3/apexcharts.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/datatables/1.10.21/js/jquery.dataTables.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/global/vendors.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/bootstrap/js/bootstrap.bundle.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/perfect-scrollbar/perfect-scrollbar.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/mousetrap/mousetrap.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/waves/waves.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/layouts/modern-light-menu/app.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/layouts/collapsible-menu/app.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/js/dashboard/dash_1.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/js/custom.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/js/scrollspyNav.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/js/dashboard/dash_2.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/tagify/tagify.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/tagify/custom-tagify.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/filepond/filepond.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/filepond/FilePondPluginFileValidateType.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/filepond/FilePondPluginImageExifOrientation.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/filepond/FilePondPluginImagePreview.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/filepond/FilePondPluginImageCrop.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/filepond/FilePondPluginImageResize.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/filepond/FilePondPluginImageTransform.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/filepond/filepondPluginFileValidateSize.min.js')}}"></script>
|
||||
<script src="{{ asset('public/assets/plugins/src/filepond/custom-filepond.js')}}"></script>
|
||||
<script src="https://cdn.ckeditor.com/4.8.0/full-all/ckeditor.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.0/jquery.validate.js"></script>
|
||||
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.5/jquery.validate.min.js" integrity="sha512-rstIgDs0xPgmG6RX1Aba4KV5cWJbAMcvRCVmglpam9SoHZiUCyQVDdH2LPlxoHtrv17XWblE/V/PP+Tr04hbtA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||
<!-- added by abhishek -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/flatpickr"></script>
|
||||
<script src="https://cdn.quilljs.com/1.3.6/quill.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
402
resources/views/Admin/layouts/master.blade.php
Normal file
402
resources/views/Admin/layouts/master.blade.php
Normal file
@@ -0,0 +1,402 @@
|
||||
@include('admin.header')
|
||||
<div class="header-container container-xxl">
|
||||
<header class="header navbar navbar-expand-sm expand-header">
|
||||
|
||||
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav mr-auto">
|
||||
|
||||
<li class="nav-item dropdown notification">
|
||||
<a class="nav-link dropdown-toggle " href="#" id="userProfileDropdown" data-toggle="dropdown"
|
||||
aria-haspopup="true" aria-expanded="false">
|
||||
<img src="{{ asset('assets/img/bell.svg') }}" />
|
||||
<div class="dropdown-menu position-absolute" aria-labelledby="userProfileDropdown"
|
||||
data-bs-popper="none">
|
||||
<div class="dropdown-item">
|
||||
<div class="notify-content">
|
||||
<div class="msg-title">
|
||||
<h3>Notifications</h3>
|
||||
<a href="#">Viewall</a>
|
||||
</div>
|
||||
<div class="divider"></div>
|
||||
<h4>Lorem ipsum</h4>
|
||||
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
|
||||
<span class="tms">9 min ago</span>
|
||||
<div class="divider"></div>
|
||||
<h4>Lorem ipsum <span></span></h4>
|
||||
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
|
||||
<span class="tms">9 min ago</span>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown user">
|
||||
<a class="nav-link dropdown-toggle" href="{{ route('profile') }}">
|
||||
<div class="avatar-container">
|
||||
<div class="avatar avatar-sm avatar-indicators avatar-online">
|
||||
<img alt="avatar" src="{{ asset('assets/img/profile-30.png') }}" class="rounded-circle">
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<div class="dropdown-menu position-absolute" aria-labelledby="userProfileDropdown"
|
||||
data-bs-popper="none">
|
||||
<div class="dropdown-item">
|
||||
<a href="signup.php">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"
|
||||
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"
|
||||
stroke-linejoin="round" class="feather feather-log-out">
|
||||
<path d="M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"></path>
|
||||
<polyline points="16 17 21 12 16 7"></polyline>
|
||||
<line x1="21" y1="12" x2="9" y2="12"></line>
|
||||
</svg> <span>Log Out</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
</div>
|
||||
<!-- sidebar -->
|
||||
<nav>
|
||||
<div class="sidebar-top">
|
||||
<span class="shrink-btn">
|
||||
<i class="fa fa-chevron-left" aria-hidden="true"></i>
|
||||
</span>
|
||||
<img src="{{ asset('assets/img/seasons_logo.png') }}" class="logo" alt="">
|
||||
<h3 class="hide">Seasons</h3>
|
||||
</div>
|
||||
<div class="sidebar-links" style="overflow: scroll;">
|
||||
<ul>
|
||||
<div class="active-tab"></div>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'dashboard') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="0">
|
||||
<a href="{{ route('dashboard') }}" data-active="0">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/dashboard.svg') }}" />
|
||||
<span class="text">Dashboard</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<button class="dropdown-btn-users mb-1">
|
||||
<div class="icons d-flex align-items-center justify-content-start w-100">
|
||||
<img src="{{ asset('assets/img/Group 57904.svg') }}" />
|
||||
<span class="text-1">Manage Users</span>
|
||||
</div>
|
||||
<i class="fa fa-angle-down mr-3" aria-hidden="true"></i>
|
||||
</button>
|
||||
|
||||
<div class="dropdown-container">
|
||||
<ul>
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-patient') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="1">
|
||||
<a href="{{ route('manage.customer') }}" data-active="1">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/single-user.svg') }}" />
|
||||
<span class="text">Customer App</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'restaurant-app') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="1">
|
||||
<a href="{{ route('manage.restaurants') }}" data-active="1">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/restraunt.svg') }}" />
|
||||
<span class="text">Restaurant App</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'sub-admins') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="1">
|
||||
<a href="{{ route('manage.subAdmin') }}" data-active="1">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/Group 57906.svg') }}">
|
||||
<span class=" text">Sub Admins</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-passports') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="2">
|
||||
<a href="{{ route('manage.passport') }}" data-active="2">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/Group.svg') }}" >
|
||||
<span class="text">Manage Passports</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-vouchers') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="3">
|
||||
<a href="{{ route('manage.voucher') }}" data-active="3">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/fluent-mdl2_coupon.svg') }}" >
|
||||
<span class="text">Manage Vouchers</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-contact') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="4">
|
||||
<a href="{{ route('manage.contact') }}" data-active="4">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/call(1) 3.svg') }}" />
|
||||
<span class="text">Manage Contact Us</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
|
||||
<button class="dropdown-btn-users mb-1">
|
||||
<div class="icons d-flex align-items-center justify-content-start w-100">
|
||||
<img src="{{ asset('assets/img/article-line.svg') }}" >
|
||||
<span class="text-1">Manage CMS</span>
|
||||
</div>
|
||||
<i class="fa fa-angle-down mr-3" aria-hidden="true"></i>
|
||||
</button>
|
||||
|
||||
<div class="dropdown-container">
|
||||
<ul>
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-news') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="1">
|
||||
<a href="{{ route('manage.Newarticles') }}" data-active="1">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/article 1.svg') }}" />
|
||||
<span class="text">News & Article</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-newsletter') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="1">
|
||||
<a href="{{ route('manage.newLetter') }}" data-active="1">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/quill_inbox-newsletter.svg') }}" />
|
||||
<span class="text">Newsletter</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-aboutus') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="1">
|
||||
<a href="{{ route('manage.aboutUs') }}" data-active="1">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/user (2) 1.svg') }}" />
|
||||
<span class="text">About Us</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-terms') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="1">
|
||||
<a href="{{ route('manage.terms') }}" data-active="1">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/contract 1.svg') }}" />
|
||||
<span class="text">Terms & Conditions</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-faq') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="1">
|
||||
<a href="{{ route('manage.faq') }}" data-active="1">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/conversation 3.svg') }}" />
|
||||
<span class="text">FAQ</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-privacy') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="1">
|
||||
<a href="{{ route('manage.privacy') }}" data-active="1">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/privacy.svg') }}" />
|
||||
<span class="text">Privacy Policy</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- <li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-cms') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="7">
|
||||
<a href="manage-cms.php" data-active="7">
|
||||
<div class="icons">
|
||||
<img src="../src/assets/img/article-line.svg" />
|
||||
<span class="text">Manage CMS</span>
|
||||
</div>
|
||||
</a>
|
||||
</li> -->
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-reports') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="5">
|
||||
<a href="{{ route('manage.reports') }}" data-active="5">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/admin 2.svg') }}" />
|
||||
<span class="text">Manage Reports</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-feedback') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="6">
|
||||
<a href="{{ route('manage.feedback') }}" data-active="6">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/Group 51242.svg') }}" />
|
||||
<span class="text">Manage Feedback</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-notification') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="6">
|
||||
<a href="{{ route('manage.notification') }}" data-active="6">
|
||||
<div class="icons">
|
||||
<img src="{{ asset('assets/img/Vector(1).svg') }}" />
|
||||
<span class="text">Manage Notification</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
<!-- <li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-subscription') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="3">
|
||||
<a href="manage-subscription.php" data-active="3">
|
||||
<div class="icons">
|
||||
<img src="../src/assets/img/newspaper-fee-svgrepo-com.svg" />
|
||||
<span class="text">Subscription</span>
|
||||
</div>
|
||||
</a>
|
||||
</li> -->
|
||||
<!-- <li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-transcation') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="3">
|
||||
<a href="manage-transcation.php" data-active="3">
|
||||
<div class="icons">
|
||||
<img src="../src/assets/img/transaction.svg" />
|
||||
<span class="text">Manage Transaction</span>
|
||||
</div>
|
||||
</a>
|
||||
</li>-->
|
||||
|
||||
|
||||
<!-- <li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-contact') {
|
||||
echo 'active';
|
||||
}
|
||||
?>">
|
||||
<a href="manage-contact.php" aria-expanded="false" class="dropdown-toggle">
|
||||
<div class="icons">
|
||||
<img src="../src/assets/img/customer-list-line-svgrepo-com.svg" />
|
||||
<span class="text">Manage Contact Us</span>
|
||||
</div>
|
||||
</a>
|
||||
</li> -->
|
||||
<!-- <li class="tooltip-element <?php
|
||||
if ($currentPage == 'manage-role') {
|
||||
echo 'active';
|
||||
}
|
||||
?>" data-tooltip="3">
|
||||
<a href="manage-role.php" data-active="3">
|
||||
<div class="icons">
|
||||
<img src="../src/assets/img/users-svgrepo-com.svg" />
|
||||
<span class="text">Manage Roles</span>
|
||||
</div>
|
||||
</a>
|
||||
</li> -->
|
||||
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</nav>
|
||||
<!-- BEGIN LOADER -->
|
||||
<div id="load_screen">
|
||||
<div class="loader">
|
||||
<div class="loader-content">
|
||||
<div class="spinner-grow align-self-center"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="main-container" id="container">
|
||||
<div class="overlay"></div>
|
||||
<div class="search-overlay"></div>
|
||||
<div id="content" class="main-content">
|
||||
@yield('content')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('admin.footer')
|
||||
@@ -0,0 +1,94 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-aboutus';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-12 left d-flex align-items-center justify-content-between"
|
||||
style="gap: 15px;">
|
||||
<h6 class="card-title pl-2">Manage About Us</h6>
|
||||
<a class="view-details-btn mr-2" href="manage-aboutus-edit.php">
|
||||
<span>Edit Details</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn p-0">
|
||||
<div class="view-details">
|
||||
<div class="simple-tab">
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade show active" id="home-tab-pane" role="tabpanel"
|
||||
aria-labelledby="home-tab" tabindex="0">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<p>
|
||||
Vorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
|
||||
eu turpis molestie, dictum est a, mattis tellus. Sed
|
||||
dignissim, metus nec fringilla accumsan, risus sem sollicitudin
|
||||
lacus, ut interdum tellus elit sed risus. Maecenas eget
|
||||
condimentum velit, sit amet feugiat lectus. Class aptent taciti
|
||||
sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<p>
|
||||
Vorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
|
||||
eu turpis molestie, dictum est a, mattis tellus. Sed
|
||||
dignissim, metus nec fringilla accumsan, risus sem sollicitudin
|
||||
lacus, ut interdum tellus elit sed risus. Maecenas eget
|
||||
condimentum velit, sit amet feugiat lectus. Class aptent taciti
|
||||
sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<p>
|
||||
Vorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
|
||||
eu turpis molestie, dictum est a, mattis tellus. Sed
|
||||
dignissim, metus nec fringilla accumsan, risus sem sollicitudin
|
||||
lacus, ut interdum tellus elit sed risus. Maecenas eget
|
||||
condimentum velit, sit amet feugiat lectus. Class aptent taciti
|
||||
sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@endsection
|
||||
|
||||
@section('section_script')
|
||||
<script src="{{ asset('public/assets/js/admin/manage_cms/manage_aboutus/main.js') }}"></script>
|
||||
<script>
|
||||
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,150 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-faq';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage FAQ</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn" style="overflow: auto;">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<th class="text-start">Sr no</th>
|
||||
<th class="text-start">Question</th>
|
||||
<th class="text-start">Answer</th>
|
||||
<th class="text-start">FAQ </th>
|
||||
<th class="text-start">Added Date</th>
|
||||
<th class="no-content">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Lorem</td>
|
||||
<td class="text-start">Lorem</td>
|
||||
<td class="text-start">Lorem</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<div class="switch-btn">
|
||||
<input type="checkbox" id="switch18" switch="bool"
|
||||
checked />
|
||||
<label for="switch18" data-on-label="Active"
|
||||
data-off-label="Expired"></label>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-passports-edit.php" data-toggle="modal" data-target="#edit-faq-modal">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-start">2</td>
|
||||
<td class="text-start">Lorem</td>
|
||||
<td class="text-start">Lorem</td>
|
||||
<td class="text-start">Lorem</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<div class="switch-btn">
|
||||
<input type="checkbox" id="switch18" switch="bool"
|
||||
checked />
|
||||
<label for="switch18" data-on-label="Active"
|
||||
data-off-label="Expired"></label>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-passports-edit.php" data-toggle="modal" data-target="#edit-faq-modal">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@endsection
|
||||
@section('section_script')
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$(' <button><a class="extra-btn width-max-content" data-toggle="modal" data-target="#add-faq-modal" href="">Add</a></button>').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,161 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-news';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage News & Articles</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn" style="overflow: auto;">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<th class="w-10px pe-2">
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid me-3">
|
||||
<input class="form-check-input" type="checkbox" data-kt-check="true"
|
||||
data-kt-check-target="#kt_table_users .form-check-input" value="1" />
|
||||
</div>
|
||||
</th>
|
||||
<th class="text-start">Sr no</th>
|
||||
<th class="text-start">Article Name</th>
|
||||
<th class="text-start">Added Date </th>
|
||||
<th class="">Image</th>
|
||||
<th class="no-content">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Lorem Ipsum</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<div class="switch-btn">
|
||||
<input type="checkbox" id="switch18" switch="bool"
|
||||
checked />
|
||||
<label for="switch18" data-on-label="Active"
|
||||
data-off-label="Expired"></label>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-news-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">2</td>
|
||||
<td class="text-start">Lorem Ipsum</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<div class="switch-btn">
|
||||
<input type="checkbox" id="switch18" switch="bool"
|
||||
checked />
|
||||
<label for="switch18" data-on-label="Active"
|
||||
data-off-label="Expired"></label>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-news-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('<button><a class="extra-btn width-max-content" href="manage-news-add.php">Add New</a ></button > ').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,146 @@
|
||||
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-newsletter';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Newsletter Subscription</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn" style="overflow: auto;">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<th class="text-start">Id</th>
|
||||
<th class="text-start">Name</th>
|
||||
<th class="text-start">Description</th>
|
||||
<th class="">Image</th>
|
||||
<th class="text-start">Published Date </th>
|
||||
<th class="no-content">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Lorem Ipsum</td>
|
||||
<td class="text-start">Lorem Ipsum</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-newsletter-view.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-newsletter-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-start">2</td>
|
||||
<td class="text-start">Lorem Ipsum</td>
|
||||
<td class="text-start">Lorem Ipsum</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-newsletter-view.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-newsletter-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('<button><a class="extra-btn width-max-content" href="manage-newsletter-add.php">Add New</a ></button > ').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,85 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-privacy';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-12 left d-flex align-items-center justify-content-between" style="gap: 15px;">
|
||||
<h6 class="card-title pl-2">Privacy Policy</h6>
|
||||
<a class="view-details-btn mr-2" href="manage-privacy-edit.php">
|
||||
<span>Edit Details</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn p-0">
|
||||
<div class="view-details">
|
||||
<div class="simple-tab">
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade show active" id="home-tab-pane" role="tabpanel" aria-labelledby="home-tab" tabindex="0">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<p>
|
||||
Vorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
|
||||
eu turpis molestie, dictum est a, mattis tellus. Sed
|
||||
dignissim, metus nec fringilla accumsan, risus sem sollicitudin
|
||||
lacus, ut interdum tellus elit sed risus. Maecenas eget
|
||||
condimentum velit, sit amet feugiat lectus. Class aptent taciti
|
||||
sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<p>
|
||||
Vorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
|
||||
eu turpis molestie, dictum est a, mattis tellus. Sed
|
||||
dignissim, metus nec fringilla accumsan, risus sem sollicitudin
|
||||
lacus, ut interdum tellus elit sed risus. Maecenas eget
|
||||
condimentum velit, sit amet feugiat lectus. Class aptent taciti
|
||||
sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<p>
|
||||
Vorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
|
||||
eu turpis molestie, dictum est a, mattis tellus. Sed
|
||||
dignissim, metus nec fringilla accumsan, risus sem sollicitudin
|
||||
lacus, ut interdum tellus elit sed risus. Maecenas eget
|
||||
condimentum velit, sit amet feugiat lectus. Class aptent taciti
|
||||
sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@endsection
|
||||
@@ -0,0 +1,88 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-terms';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-12 left d-flex align-items-center justify-content-between"
|
||||
style="gap: 15px;">
|
||||
<h6 class="card-title pl-2">Terms & Conditions</h6>
|
||||
<a class="view-details-btn mr-2" href="manage-terms-edit.php">
|
||||
<span>Edit Details</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn p-0">
|
||||
<div class="view-details">
|
||||
<div class="simple-tab">
|
||||
<div class="tab-content" id="myTabContent">
|
||||
<div class="tab-pane fade show active" id="home-tab-pane" role="tabpanel"
|
||||
aria-labelledby="home-tab" tabindex="0">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<p>
|
||||
Vorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
|
||||
eu turpis molestie, dictum est a, mattis tellus. Sed
|
||||
dignissim, metus nec fringilla accumsan, risus sem sollicitudin
|
||||
lacus, ut interdum tellus elit sed risus. Maecenas eget
|
||||
condimentum velit, sit amet feugiat lectus. Class aptent taciti
|
||||
sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<p>
|
||||
Vorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
|
||||
eu turpis molestie, dictum est a, mattis tellus. Sed
|
||||
dignissim, metus nec fringilla accumsan, risus sem sollicitudin
|
||||
lacus, ut interdum tellus elit sed risus. Maecenas eget
|
||||
condimentum velit, sit amet feugiat lectus. Class aptent taciti
|
||||
sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos.
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<p>
|
||||
Vorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam
|
||||
eu turpis molestie, dictum est a, mattis tellus. Sed
|
||||
dignissim, metus nec fringilla accumsan, risus sem sollicitudin
|
||||
lacus, ut interdum tellus elit sed risus. Maecenas eget
|
||||
condimentum velit, sit amet feugiat lectus. Class aptent taciti
|
||||
sociosqu ad litora torquent per conubia nostra, per
|
||||
inceptos himenaeos.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@endsection
|
||||
@section('section_script')
|
||||
@endsection
|
||||
@@ -0,0 +1,141 @@
|
||||
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-contact-us';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Contact Us</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<div class="btns-datatabel">
|
||||
<div class="row">
|
||||
<div class="col-md-7"></div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<tr>
|
||||
<th class="text-start">Sr No.</th>
|
||||
<th class="text-start">Name</th>
|
||||
<th class="text-start">Email address</th>
|
||||
<th class="text-start">Message</th>
|
||||
<th class="no-content">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Raj Shinde</td>
|
||||
<td class="text-start">rajshinde9@gmail.com</td>
|
||||
<td>
|
||||
<a class="view-btn m-0" href="" data-toggle="modal"
|
||||
data-target="#message-modal">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#reply-modal">
|
||||
<img src="../src/assets/img/restore.svg" />
|
||||
<span>Reply</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-start">2</td>
|
||||
<td class="text-start">Raj Shinde</td>
|
||||
<td class="text-start">rajshinde9@gmail.com</td>
|
||||
<td>
|
||||
<a class="view-btn m-0" href="" data-toggle="modal"
|
||||
data-target="#message-modal">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#reply-modal">
|
||||
<img src="../src/assets/img/restore.svg" />
|
||||
<span>Reply</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,118 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-feedback';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Feedback</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<tr>
|
||||
<th class="text-start">Sr No.</th>
|
||||
<th class="text-start">User ID</th>
|
||||
<th class="text-start">User Name</th>
|
||||
<th class="text-start">User Type</th>
|
||||
<th class="text-start">Reactions</th>
|
||||
<th class="text-start">Commnet</th>
|
||||
<th class="text-start">Date Received</th>
|
||||
<th class="no-content">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">345678</td>
|
||||
<td class="text-start">Raj Shinde</td>
|
||||
<td class="text-start">Customer</td>
|
||||
<td class="text-start">Good</td>
|
||||
<td>
|
||||
<a class="view-btn m-0" href="" data-toggle="modal"
|
||||
data-target="#comment-modal">View</a>
|
||||
</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td>
|
||||
<a class="d-flex justify-content-center align-items-center"
|
||||
style="gap: 7px;" href="" data-toggle="modal"
|
||||
data-target="#delete-modal">
|
||||
<img width="15" src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-start">2</td>
|
||||
<td class="text-start">345678</td>
|
||||
<td class="text-start">Raj Shinde</td>
|
||||
<td class="text-start">Customer</td>
|
||||
<td class="text-start">Amazing</td>
|
||||
<td>
|
||||
<a class="view-btn m-0" href="" data-toggle="modal"
|
||||
data-target="#comment-modal">View</a>
|
||||
</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td>
|
||||
<a class="d-flex justify-content-center align-items-center"
|
||||
style="gap: 7px;" href="" data-toggle="modal"
|
||||
data-target="#delete-modal">
|
||||
<img width="15" src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('<button><ul class="navbar-item flex-row ms-lg-auto ms-0"><li class="nav-item dropdown action-dropdown order-lg-0 order-1"><a href="javascript:void(0);"class="nav-link dropdown-toggle user extra-btn" id="actionDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><div class="avatar-container"><div class="avatar avatar-sm avatar-indicators avatar-online"><h3>Filter</h3></div></div></a><div class="dropdown-menu position-absolute" aria-labelledby="actionDropdown"><div class="dropdown-item"><a href="#"><span>Customer</span></a></div><div class="dropdown-item"><a href="#"><span>Restraunt</span></a></div></div></li></ul></button>').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,148 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-notification';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Notification</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<tr>
|
||||
<th class="text-start">Sr No.</th>
|
||||
<th class="text-start">Notification content</th>
|
||||
<th class="text-start">Created Date</th>
|
||||
<th class="text-start">Recipients</th>
|
||||
<th class="text-start">Date sent</th>
|
||||
<th class="no-content">Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Lorem Ipsum</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">Customer</td>
|
||||
<td class="text-start">20/22/2023</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-notification-view.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-notification-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Lorem Ipsum</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">Customer</td>
|
||||
<td class="text-start">20/22/2023</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-vouchers-view.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-vouchers-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('<button><a class="extra-btn width-max-content" href="manage-notification-add.php">Add</a></button><button><ul class="navbar-item flex-row ms-lg-auto ms-0"><li class="nav-item dropdown action-dropdown order-lg-0 order-1"><a href="javascript:void(0);"class="nav-link dropdown-toggle user extra-btn" id="actionDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><div class="avatar-container"><div class="avatar avatar-sm avatar-indicators avatar-online"><h3>Filter</h3></div></div></a><div class="dropdown-menu position-absolute" aria-labelledby="actionDropdown"><div class="dropdown-item"><a href="#"><span>All</span></a></div><div class="dropdown-item"><a href="#"><span>Customer</span></a></div><div class="dropdown-item"><a href="#"> <span>Restaurant</span></a></div></div></li></ul></button>').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,174 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-passport';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Passports</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn" style="overflow: auto;">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<th class="w-10px pe-2">
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid me-3">
|
||||
<input class="form-check-input" type="checkbox" data-kt-check="true"
|
||||
data-kt-check-target="#kt_table_users .form-check-input" value="1" />
|
||||
</div>
|
||||
</th>
|
||||
<th class="text-start">Sr no</th>
|
||||
<th class="text-start">Passport Name</th>
|
||||
<th class="text-start">Passport ID</th>
|
||||
<th class="text-start">Image </th>
|
||||
<th class="text-start">Price</th>
|
||||
<th class="text-start">Status</th>
|
||||
<th class="no-content">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Cheers to Summer</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td class="text-start">$500</td>
|
||||
<td>
|
||||
<div class="switch-btn">
|
||||
<input type="checkbox" id="switch18" switch="bool" checked />
|
||||
<label for="switch18" data-on-label="Active" data-off-label="Expired"></label>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-passports-view.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-passports-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">2</td>
|
||||
<td class="text-start">Cheers to Summer</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td class="text-start">$500</td>
|
||||
<td>
|
||||
<div class="switch-btn">
|
||||
<input type="checkbox" id="switch18" switch="bool" checked />
|
||||
<label for="switch18" data-on-label="Active" data-off-label="Expired"></label>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-passports-view.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-passports-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('section_script')
|
||||
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('<button><a class="extra-btn width-max-content" href="manage-passports-add.php">Add</a></button><button><ul class="navbar-item flex-row ms-lg-auto ms-0"><li class="nav-item dropdown action-dropdown order-lg-0 order-1"><a href="javascript:void(0);"class="nav-link dropdown-toggle user extra-btn" id="actionDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><div class="avatar-container"><div class="avatar avatar-sm avatar-indicators avatar-online"><h3>Filter</h3></div></div></a><div class="dropdown-menu position-absolute" aria-labelledby="actionDropdown"><div class="dropdown-item"><a href="#"><span>All</span></a></div><div class="dropdown-item"><a href="#"><span>Active</span></a></div><div class="dropdown-item"><a href="#"> <span>Expired</span></a></div></div></li></ul></button>').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,152 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage_profile';
|
||||
@endphp
|
||||
|
||||
|
||||
<!-- BEGIN LOADER -->
|
||||
<div id="load_screen">
|
||||
<div class="loader">
|
||||
<div class="loader-content">
|
||||
<div class="spinner-grow align-self-center"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- END LOADER -->
|
||||
<!-- BEGIN MAIN CONTAINER -->
|
||||
<div class="main-container" id="container">
|
||||
<div class="overlay"></div>
|
||||
<div class="search-overlay"></div>
|
||||
<div id="content" class="main-content">
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Profile</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row widget-content widget-content-area br-8 position-btn m-auto py-3" style="overflow: auto;">
|
||||
<div class="row m-0 p-0 w-100">
|
||||
<div class="col-md-6 d-flex align-items-center justify-content-start mb-4" style="gap: 25px;">
|
||||
<div>
|
||||
<label id="image-upload-button" for="profileImage">
|
||||
<i class="fa fa-camera" aria-hidden="true"></i>
|
||||
</label>
|
||||
<input class="d-none" type="file" id="profileImage" accept="image/*" onchange="previewImage(event)">
|
||||
<div id="imagePreview" style="background-image: url('../src/assets/img/mahima.jpg')">
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div>
|
||||
<h5 class="mb-1" style="font-weight: 700;">Akanksha Surve</h5>
|
||||
<p class="m-0">12345678</p>
|
||||
<p class="m-0">Mumbai, Maharashtra</p>
|
||||
</div> -->
|
||||
<div>
|
||||
{{-- @dd(Auth::guard('admin')->user()) --}}
|
||||
|
||||
{{-- @dd(Auth::guard('admin')->user()->user_name,) --}}
|
||||
@if(isset($user))
|
||||
<h5 class="mb-1" style="font-weight: 700;">{{ $user->first_name }}</h5>
|
||||
<p class="m-0">{{ $user->phone_number }}</p>
|
||||
<p class="m-0">{{ $user->address_line1 }}</p>
|
||||
@else
|
||||
<p>No user found with ID 1.</p>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 d-flex justify-content-end">
|
||||
<a class="download-btn-custom mt-3 custom-width-15 m-0" href="signup.php" style="height: fit-content;">
|
||||
<span>Logout</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row m-0 p-0 w-75 mx-auto">
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="">First Name</label>
|
||||
<input class="form-control" type="text" value="{{ $user->first_name }}" id="first_name"
|
||||
name="first_name" maxlength="15" required>
|
||||
</div>
|
||||
<div class="col-md-6 mb-3">
|
||||
<label for="">Last Name</label>
|
||||
<input class="form-control" type="text" value="{{ $user->last_name }}" id="last_name"
|
||||
name="last_name" maxlength="15" required>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label for="">Phone Number</label>
|
||||
<input class="form-control" type="tel" value="{{ $user->phone_number }}" id="phone_number"
|
||||
name="phone_number" maxlength="10" required>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label for="">Email Address</label>
|
||||
<input class="form-control" type="email" value="{{ $user->email_address }}"
|
||||
id="email_address" name="email_address" required
|
||||
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$">
|
||||
</div>
|
||||
<div class="col-md-12 mt-3">
|
||||
<a class="download-btn-custom mt-3 custom-width-10 mx-auto" href="">
|
||||
<span>Save</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script>
|
||||
// Select the start and end date inputs
|
||||
var startDateInput = document.getElementById("startDate");
|
||||
var endDateInput = document.getElementById("endDate");
|
||||
|
||||
// Initialize Flatpickr for the date range with placeholders
|
||||
flatpickr(startDateInput, {
|
||||
dateFormat: "Y-m-d",
|
||||
onChange: function(selectedDates, dateStr) {
|
||||
// Set the minimum date for the end date input
|
||||
endDatePicker.set("minDate", dateStr);
|
||||
}
|
||||
});
|
||||
|
||||
var endDatePicker = flatpickr(endDateInput, {
|
||||
dateFormat: "Y-m-d",
|
||||
});
|
||||
|
||||
|
||||
function previewImage(event) {
|
||||
var input = event.target;
|
||||
var preview = document.getElementById('imagePreview');
|
||||
|
||||
// Ensure that a file is selected
|
||||
if (input.files && input.files[0]) {
|
||||
var reader = new FileReader();
|
||||
|
||||
reader.onload = function(e) {
|
||||
// Set the background image of the preview div
|
||||
preview.style.backgroundImage = 'url(' + e.target.result + ')';
|
||||
};
|
||||
|
||||
// Read the selected file as a data URL
|
||||
reader.readAsDataURL(input.files[0]);
|
||||
} else {
|
||||
// Clear the background image if no file is selected
|
||||
preview.style.backgroundImage = 'none';
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
@endsection
|
||||
@@ -0,0 +1,74 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-reports';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Reports & Analysis</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row widget-content widget-content-area br-8 position-btn m-auto py-3" style="overflow: auto;">
|
||||
<div class="col-md-6">
|
||||
<label for="">Select Modules</label>
|
||||
<select class="form-control">
|
||||
<option value="">dummny</option>
|
||||
<option value="">dummny</option>
|
||||
<option value="">dummny</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-6">
|
||||
<label for="startDate">Start Date:</label>
|
||||
<input class="form-control" placeholder="Select start date" type="text" id="startDate">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<label for="endDate">End Date:</label>
|
||||
<input class="form-control" placeholder="Select end date" type="text" id="endDate">
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<a class="download-btn-custom mt-3 custom-width-10" href="">
|
||||
<span>Download</span>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script>
|
||||
// Select the start and end date inputs
|
||||
var startDateInput = document.getElementById("startDate");
|
||||
var endDateInput = document.getElementById("endDate");
|
||||
|
||||
// Initialize Flatpickr for the date range with placeholders
|
||||
flatpickr(startDateInput, {
|
||||
dateFormat: "Y-m-d",
|
||||
onChange: function (selectedDates, dateStr) {
|
||||
// Set the minimum date for the end date input
|
||||
endDatePicker.set("minDate", dateStr);
|
||||
}
|
||||
});
|
||||
|
||||
var endDatePicker = flatpickr(endDateInput, {
|
||||
dateFormat: "Y-m-d",
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,266 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-patient';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Customers</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn" style="overflow: auto;">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<th class="w-10px pe-2">
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid me-3">
|
||||
<input class="form-check-input" type="checkbox" data-kt-check="true"
|
||||
data-kt-check-target="#kt_table_users .form-check-input" value="1" />
|
||||
</div>
|
||||
</th>
|
||||
<th class="text-start">Sr no</th>
|
||||
<th class="text-start">Full Name</th>
|
||||
<th class="text-start">User ID</th>
|
||||
<th class="text-start">Email Id</th>
|
||||
<th class="text-start">Date of birth</th>
|
||||
<th class="text-start">Phone Number</th>
|
||||
<th class="text-start">Location</th>
|
||||
<th class="text-start">Passports</th>
|
||||
|
||||
<th class="no-content">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Akanksha Surve</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">+5624878954</td>
|
||||
<td class="text-start">New York</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn" href="passports.php">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="edit-manage-customers.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Akanksha Surve</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">+5624878954</td>
|
||||
<td class="text-start">New York</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn" href="passports.php" >View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="edit-manage-customers.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Akanksha Surve</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">+5624878954</td>
|
||||
<td class="text-start">New York</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn" href="" data-toggle="modal">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="edit-manage-customers.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Akanksha Surve</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">+5624878954</td>
|
||||
<td class="text-start">New York</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn" href="" data-toggle="modal">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="edit-manage-customers.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('<button><a class="extra-btn width-max-content" href="archive-manage-customers.php">View Archive List</a></button><button><ul class="navbar-item flex-row ms-lg-auto ms-0"><li class="nav-item dropdown action-dropdown order-lg-0 order-1"><a href="javascript:void(0);"class="nav-link dropdown-toggle user extra-btn" id="actionDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><div class="avatar-container"><div class="avatar avatar-sm avatar-indicators avatar-online"><h3>Export</h3></div></div></a><div class="dropdown-menu position-absolute" aria-labelledby="actionDropdown"><div class="dropdown-item"><a href="#"><span>Download Overview</span></a></div><div class="dropdown-item"><a href="#"><span>Download Patient Data</span></a></div><div class="dropdown-item"><a href="#"> <span>Download Selected</span></a></div></div></li></ul></button>').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,272 @@
|
||||
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
<?php $currentPage = "manage-restaurant" ?>
|
||||
|
||||
|
||||
|
||||
<!-- END LOADER -->
|
||||
<!-- BEGIN MAIN CONTAINER -->
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Restaurants</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn" style="overflow: auto;">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<th class="w-10px pe-2">
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid me-3">
|
||||
<input class="form-check-input" type="checkbox" data-kt-check="true"
|
||||
data-kt-check-target="#kt_table_users .form-check-input" value="1" />
|
||||
</div>
|
||||
</th>
|
||||
<th class="text-start">Sr no</th>
|
||||
<th class="text-start">Resturant Name</th>
|
||||
<th class="text-start">Resturant ID</th>
|
||||
<th class="text-start">Email Id</th>
|
||||
<th class="text-start">Image</th>
|
||||
<th class="text-start">Date Onboarded</th>
|
||||
<th class="text-start">Phone Number</th>
|
||||
<th class="text-start">Location</th>
|
||||
<th class="text-start">Passports</th>
|
||||
<th class="no-content">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">McDonald’s</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">+5624878954</td>
|
||||
<td class="text-start">New York</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn" href="manage-restraunts-passports.php">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-restraunts-details.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-restraunts-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">McDonald’s</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">+5624878954</td>
|
||||
<td class="text-start">New York</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn" href="passports.php">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="edit-manage-customers.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">McDonald’s</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">+5624878954</td>
|
||||
<td class="text-start">New York</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn" href="passports.php">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="edit-manage-customers.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">McDonald’s</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">+5624878954</td>
|
||||
<td class="text-start">New York</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn" href="passports.php">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="view-customer.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="edit-manage-customers.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('<button><a class="extra-btn width-max-content" href="manage-restraunts-add.php">Add</a></button><button><a class="extra-btn width-max-content" href="manage-restraunts-archive.php">View Archive List</a></button>').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,165 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
<?php $currentPage = "sub-admins" ?>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Sub Admins</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn" style="overflow: auto;">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<th class="w-10px pe-2">
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid me-3">
|
||||
<input class="form-check-input" type="checkbox" data-kt-check="true"
|
||||
data-kt-check-target="#kt_table_users .form-check-input" value="1" />
|
||||
</div>
|
||||
</th>
|
||||
<th class="text-start">Sr no</th>
|
||||
<th class="text-start">Name</th>
|
||||
<th class="text-start">Email Id</th>
|
||||
<th class="text-start">Last Login</th>
|
||||
<th class="text-start">Permission</th>
|
||||
<th class="no-content">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Akanksha</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn m-0 pointer" data-toggle="modal" data-target="#premission-modal">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<div class="switch-btn">
|
||||
<input type="checkbox" id="switch18" switch="bool" checked />
|
||||
<label for="switch18" data-on-label="Active" data-off-label="Expired"></label>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-subadmins-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Akanksha</td>
|
||||
<td class="text-start">akanksha@gmail.com</td>
|
||||
<td class="text-start">08/22/2023</td>
|
||||
<td class="text-start">
|
||||
<a class="view-btn m-0 pointer" data-toggle="modal" data-target="#premission-modal" data-toggle="modal" data-target="#premission-modal">View</a>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-restraunts-details.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#archive-modal">
|
||||
<img src="../src/assets/img/archive.svg" />
|
||||
<span>Archive</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-restraunts-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
|
||||
@section('section_script')
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('<button><a class="extra-btn width-max-content" href="manage-subadmins-add.php">Add</a></button>').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -0,0 +1,172 @@
|
||||
@extends('admin.layouts.master')
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$currentPage = 'manage-vouchers';
|
||||
@endphp
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="layout-px-spacing">
|
||||
<div class="middle-content container-xxl p-0">
|
||||
<div class="row layout-top-spacing ">
|
||||
<div class="top-tabel">
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h6 class="card-title">Manage Vouchers</h6>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-xl-12 col-lg-12 col-sm-12 layout-spacing">
|
||||
<div class="widget-content widget-content-area br-8 position-btn" style="overflow: auto;">
|
||||
<table id="zero-config" class="table dt-table-hover" style="width:100%">
|
||||
<thead class="text-center">
|
||||
<th class="w-10px pe-2">
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid me-3">
|
||||
<input class="form-check-input" type="checkbox" data-kt-check="true"
|
||||
data-kt-check-target="#kt_table_users .form-check-input" value="1" />
|
||||
</div>
|
||||
</th>
|
||||
<th class="text-start">Sr no</th>
|
||||
<th class="text-start">Coupon Name</th>
|
||||
<th class="text-start">Coupon ID</th>
|
||||
<th class="text-start">Image </th>
|
||||
<th class="text-start">Status</th>
|
||||
<th class="no-content">Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody class="text-center">
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">1</td>
|
||||
<td class="text-start">Cheers to Summer</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td>
|
||||
<div class="switch-btn">
|
||||
<input type="checkbox" id="switch18" switch="bool" checked />
|
||||
<label for="switch18" data-on-label="Active" data-off-label="Expired"></label>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-vouchers-view.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-vouchers-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<div class="form-check form-check-sm form-check-custom form-check-solid">
|
||||
<input class="form-check-input" type="checkbox" value="1" />
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-start">2</td>
|
||||
<td class="text-start">Cheers to Winter</td>
|
||||
<td class="text-start">1234567</td>
|
||||
<td><img src="../src/assets/img/video.png"></td>
|
||||
<td>
|
||||
<div class="switch-btn">
|
||||
<input type="checkbox" id="switch18" switch="bool" checked />
|
||||
<label for="switch18" data-on-label="Active" data-off-label="Expired"></label>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<div class="dropout">
|
||||
<button class="more">
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="manage-vouchers-view.php">
|
||||
<img src="../src/assets/img/view.svg" />
|
||||
<span>View</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="manage-vouchers-edit.php">
|
||||
<img src="../src/assets/img/edit.svg" />
|
||||
<span>Edit</span>
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="" data-toggle="modal" data-target="#delete-modal">
|
||||
<img src="../src/assets/img/delete-recycle.svg" />
|
||||
<span>Delete</span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@endsection
|
||||
|
||||
@section('section_script')
|
||||
|
||||
|
||||
<script src="../src/plugins/src/table/datatable/datatables.js"></script>
|
||||
<script>
|
||||
$('#zero-config').DataTable({
|
||||
"dom": "<'dt--top-section'<'row'<'col-12 col-sm-6 d-flex justify-content-sm-start justify-content-center'l><'col-12 col-sm-6 d-flex justify-content-sm-end justify-content-center mt-sm-0 mt-3'f>>>" +
|
||||
"<'table-responsive'tr>" +
|
||||
"<'dt--bottom-section d-sm-flex justify-content-sm-between text-center'<'dt--pages-count mb-sm-0 mb-3'i><'dt--pagination'p>>",
|
||||
"oLanguage": {
|
||||
"oPaginate": { "sPrevious": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-left"><line x1="19" y1="12" x2="5" y2="12"></line><polyline points="12 19 5 12 12 5"></polyline></svg>', "sNext": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-arrow-right"><line x1="5" y1="12" x2="19" y2="12"></line><polyline points="12 5 19 12 12 19"></polyline></svg>' },
|
||||
"sInfo": "Showing page _PAGE_ of _PAGES_",
|
||||
"sSearch": '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>',
|
||||
"sSearchPlaceholder": "Search...",
|
||||
"sLengthMenu": "Results : _MENU_",
|
||||
},
|
||||
"stripeClasses": [],
|
||||
"lengthMenu": [7, 10, 20, 50],
|
||||
"pageLength": 10
|
||||
});
|
||||
</script>
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$('<button><a class="extra-btn width-max-content" href="manage-vouchers-add.php">Add</a></button><button><ul class="navbar-item flex-row ms-lg-auto ms-0"><li class="nav-item dropdown action-dropdown order-lg-0 order-1"><a href="javascript:void(0);"class="nav-link dropdown-toggle user extra-btn" id="actionDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><div class="avatar-container"><div class="avatar avatar-sm avatar-indicators avatar-online"><h3>Filter</h3></div></div></a><div class="dropdown-menu position-absolute" aria-labelledby="actionDropdown"><div class="dropdown-item"><a href="#"><span>All</span></a></div><div class="dropdown-item"><a href="#"><span>Active</span></a></div><div class="dropdown-item"><a href="#"> <span>Expired</span></a></div></div></li></ul></button>').insertBefore("#zero-config_filter label");
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
@@ -1,17 +1,94 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Route;
|
||||
use App\Http\Controllers\Admin\ManageProfileController;
|
||||
use App\Http\Controllers\Admin\ManageCustomerController;
|
||||
use App\Http\Controllers\Admin\ManageRestrauntController;
|
||||
use App\Http\Controllers\Admin\ManageSubAdminController;
|
||||
use App\Http\Controllers\Admin\ManagePassportController;
|
||||
use App\Http\Controllers\Admin\ManageVouchersController;
|
||||
use App\Http\Controllers\Admin\ManageContactUsController;
|
||||
use App\Http\Controllers\Admin\ManageNewsAndArticlesController;
|
||||
use App\Http\Controllers\Admin\ManageNewsLetterController;
|
||||
use App\Http\Controllers\Admin\AboutUsController;
|
||||
use App\Http\Controllers\Admin\TermsController;
|
||||
use App\Http\Controllers\Admin\FaqController;
|
||||
use App\Http\Controllers\Admin\PrivacyPolicyController;
|
||||
use App\Http\Controllers\Admin\ManageReportsController;
|
||||
use App\Http\Controllers\Admin\ManageFeedbackController;
|
||||
use App\Http\Controllers\Admin\ManageNotificationsController;
|
||||
use App\Http\Controllers\Admin\DashboardController ;
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Route::get('/', function () {
|
||||
return view('welcome');
|
||||
return view('dashboard');
|
||||
});
|
||||
|
||||
Route::middleware([
|
||||
'auth:sanctum',
|
||||
config('jetstream.auth_session'),
|
||||
'verified',
|
||||
])->group(function () {
|
||||
Route::get('/dashboard', function () {
|
||||
return view('dashboard');
|
||||
})->name('dashboard');
|
||||
});
|
||||
// Route::middleware([
|
||||
// 'auth:sanctum',
|
||||
// config('jetstream.auth_session'),
|
||||
// 'verified',
|
||||
// ])->group(function () {
|
||||
// Route::get('/dashboard', function () {
|
||||
// return view('dashboard');
|
||||
// })->name('dashboard');
|
||||
// });
|
||||
Route::get('/dashboard', [DashboardController ::class, 'index'])->name('dashboard');
|
||||
|
||||
Route::get('/profile', [ManageProfileController ::class, 'index'])->name('profile');
|
||||
|
||||
//*******************************************************manage users********************************************************
|
||||
//*******************************************************manage customer********************************************************
|
||||
Route::get('/manage-customer', [ManageCustomerController ::class, 'index'])->name('manage.customer');
|
||||
|
||||
//*******************************************************manage restraunts********************************************************
|
||||
Route::get('/manage-restaurants', [ManageRestrauntController ::class, 'index'])->name('manage.restaurants');
|
||||
//*******************************************************manage subadmin********************************************************
|
||||
Route::get('/manage-sub-admin', [ ManageSubAdminController ::class, 'index'])->name('manage.subAdmin');
|
||||
//*******************************************************manage passport********************************************************
|
||||
Route::get('/manage-passport', [ ManagePassportController ::class, 'index'])->name('manage.passport');
|
||||
//*******************************************************manage voucher********************************************************
|
||||
Route::get('/manage-vouchers', [ManageVouchersController ::class, 'index'])->name('manage.voucher');
|
||||
//*******************************************************manage contact********************************************************
|
||||
Route::get('/manage-contact', [ManageContactUsController ::class, 'index'])->name('manage.contact');
|
||||
//*******************************************************manage cms********************************************************
|
||||
//*******************************************************manage new&article********************************************************
|
||||
Route::get('/manage-new-articles', [ManageNewsAndArticlesController ::class, 'index'])->name('manage.Newarticles');
|
||||
//*******************************************************manage newletter********************************************************
|
||||
|
||||
Route::get('/manage-newsletter', [ManageNewsLetterController ::class, 'index'])->name('manage.newLetter');
|
||||
//*******************************************************manage aboutus********************************************************
|
||||
|
||||
Route::get('/manage-about-us', [AboutUsController ::class, 'index'])->name('manage.aboutUs');
|
||||
|
||||
//*******************************************************manage terms********************************************************
|
||||
|
||||
Route::get('/terms', [TermsController ::class, 'index'])->name('manage.terms');
|
||||
|
||||
//*******************************************************manage faq********************************************************
|
||||
Route::get('/faq', [FaqController ::class, 'index'])->name('manage.faq');
|
||||
//*******************************************************manage privacypolicy********************************************************
|
||||
Route::get('/privacy', [ PrivacyPolicyController ::class, 'index'])->name('manage.privacy');
|
||||
//*******************************************************manage reports********************************************************
|
||||
Route::get('/manage-reports', [ ManageReportsController ::class, 'index'])->name('manage.reports');
|
||||
//*******************************************************manage feedback********************************************************
|
||||
Route::get('/manage-feedback', [ManageFeedbackController ::class, 'index'])->name('manage.feedback');
|
||||
//*******************************************************manage notification********************************************************
|
||||
Route::get('/manage-notification', [ManageNotificationsController ::class, 'index'])->name('manage.notification');
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user