Skip to content

Instantly share code, notes, and snippets.

@abdullahqureshi1994
Last active January 2, 2022 17:57
Show Gist options
  • Save abdullahqureshi1994/1a9d1328fd922d113aca7743718c0a1b to your computer and use it in GitHub Desktop.
Save abdullahqureshi1994/1a9d1328fd922d113aca7743718c0a1b to your computer and use it in GitHub Desktop.
<?php
namespace App;
use DB;
public class Service{
public static function insertCustomer($data){
DB::table('customers')->insert($data);
return true;
}
public static function sendMail($data){
Mail::to($data['email'])->send(new WelcomeNewCustomer($data));
return true;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment