/home/kueuepay/public_html/app/Http/Controllers/Admin/SubscriberController.php
<?php

namespace App\Http\Controllers\Admin;

use Exception;
use Illuminate\Http\Request;
use App\Models\Frontend\Subscribe;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Validator;
use Illuminate\Support\Facades\Notification;
use App\Notifications\websiteSubscribeNotification;

class SubscriberController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return \Illuminate\Http\Response
     */
    public function index()
    {
        $page_title = "Website Subscribers";
        $subscribers = Subscribe::orderByDesc("id")->paginate(15);
        return view('admin.sections.subscriber.index',compact('page_title','subscribers'));
    }

    public function sendMail(Request $request) {
        $validator = Validator::make($request->all(),[
            'subject'       => "required|string|max:255",
            'message'       => "required|string|max:5000",
        ]);
        if($validator->fails()) return back()->withErrors($validator)->withInput()->with('modal','send-mail-subscribers');
        $validated = $validator->validate();

        try{
            $subscribers = Subscribe::get()->pluck("email")->toArray();
            Notification::route("mail",$subscribers)->notify(new websiteSubscribeNotification($validated));
        }catch(Exception $e) {
            return back()->with(['error' => ['Mail send failed! Please try again']]);
        }
        return back()->with(['success' => ['Mail successfully sended']]);
    }
}
Best Practice

Best Practices

To ensure a smooth integration process and optimal performance, follow these best practices:

  1. Use secure HTTPS connections for all API requests.
  2. Implement robust error handling to handle potential issues gracefully.
  3. Regularly update your integration to stay current with any API changes or enhancements.