Desh School Features

Desh School (দেশ স্কুল) কী এবং কেন?

দেশ স্কুল একটি আধুনিক প্ল্যাটফর্ম যেখানে যেকোনো ধরনের শিক্ষা প্রতিষ্ঠান তাদের নিজস্ব প্রয়োজনে কোনো ঝামেলা ছাড়াই মুহূর্তের মধ্যে ওয়েবসাইট তৈরি করতে পারেন।

Laravel application settings for Load-balancer or Proxy Server

If your laravel application is running behind the Proxy Server or the Load-Balancer then you should follow these settings. Even, if the proxy server or Load-balancer receives https:// requests from global users and your app server receives http:// requests from the proxy or LB then you should follow these steps too. 2. You need to…

ইচ্ছে করে তোমায় ছেড়ে

ইচ্ছে করে তোমায় ছেড়েহারিয়ে যাবো মানুষের ভিড়ে,ইচ্ছে করে তোমায় ছেড়েহারিয়ে যাবো মানুষের ভিড়ে। খুঁজে দেখো তখন সারা পৃথিবী জুড়েআমারই মতোন ভালোবাসবে কি কেউ,খুঁজে দেখো তখন সারা পৃথিবী জুড়েভালোবাসে কি কেউ এতটা নিখুঁত করে। ইচ্ছে করে তোমায় ছেড়েহারিয়ে যাবো মানুষের ভিড়ে,ইচ্ছে করে তোমায় ছেড়েহারিয়ে যাবো মানুষের ভিড়ে। কথা, সুরকার, শিল্পীঃ অজানা– অরিজিনাল গানটির (অডিও বা ভিডিও)…

After user registration in Laravel 11, a simple way to create an Event Listener

Follow these easy steps to create an Event Listener after user registration in Laravel 11. Create an Event class file php artisan make:event UserCreated Create a Listener class file php artisan make:listener SendWelcomeEmail –event=UserCreated Add following codes in User model file use App\Events\UserCreated; Add the following codes in User class of User model file Add…