Push Notification in php and laravel

A. Without ajax load with page loading <a class="bell_notification_clicker" href="#"> <img src="{{ asset('/assets/') }}/img/icon/bell.svg" alt=""> <?php $purchase_plan_count = DB::table('purchase_plan')->where('notification', 0)->count(); if($purchase_plan_count > 3){ $purchase_plan_count = 3; } ?> <span>{{$purchase_plan_count}}</span> </a>…

0 Comments

Galley image for ecommorce product single page with crop features

  <script> $(document).ready(function(){ $('#add_more_galleries1').click(function(){ $(".add_more_gallery_images2").show(); $(this).hide(); $("#add_more_galleries2").show(); }); $('#add_more_galleries2').click(function(){ $(".add_more_gallery_images3").show(); $(this).hide(); $("#add_more_galleries3").show(); }); $('#add_more_galleries2').click(function(){ $(".add_more_gallery_images3").show(); $(this).hide(); $("#add_more_galleries3").show(); }); $('#add_more_galleries3').click(function(){ $(".add_more_gallery_images4").show(); $(this).hide(); $("#add_more_galleries4").show(); }); $('#add_more_galleries4').click(function(){ $(".add_more_gallery_images5").show(); $(this).hide(); $("#add_more_galleries5").show(); }); $('#add_more_galleries5').click(function(){ $(".add_more_gallery_images6").show();…

0 Comments

Integrate zoom with laravel

  https://marketplace.zoom.us/ Goto right corner develop dropdown and enter mouse it and click on create build app link client_id = GBtAuW3fQuyz0MgyIWM_mA client_secret = 4caJamU31pXeCm27pXiaMv79UYkr2Hwe composer require macsidigital/laravel-zoom right cmd: composer…

0 Comments

Appointment booking system using calendor in laravel

  Appointment booking system @extends('layouts.admin') @push('title', get_phrase('Edit Appointment')) @push('meta')@endpush @push('css')@endpush @section('content') <script src='https://cdn.jsdelivr.net/npm/fullcalendar-scheduler@6.1.11/index.global.min.js'></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script> <!-- Mani section header and breadcrumb --> <div class="ol-card radius-8px print-d-none"> <div class="ol-card-body my-3 py-4…

0 Comments

Product module using laravel

    A. Category Page Router: // category start Route::any('/all-categories', [CategoryController::class, 'all_categories']) ->middleware(['auth', 'verified'])->name('all_categories'); Route::any('/add-categories', [CategoryController::class, 'add_categories']) ->middleware(['auth', 'verified'])->name('add_categories'); Route::post('/fetch-categories', [CategoryController::class, 'fetch_categories'])->name('fetch_categories'); Route::any('/save-category', [CategoryController::class, 'save_category'])->name('save_category'); Route::any('/edit-category/{id}', [CategoryController::class, 'edit_category']); Route::any('/delete-category/{id}', [CategoryController::class,…

0 Comments