Skip to content

Instantly share code, notes, and snippets.

@abdullahqureshi1994
Created January 2, 2022 17:58
Show Gist options
  • Save abdullahqureshi1994/d0e34fde3b2084267cfc709da3231c59 to your computer and use it in GitHub Desktop.
Save abdullahqureshi1994/d0e34fde3b2084267cfc709da3231c59 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Service;
class CustomerController extends controller{
public function store(Request $request){
$data = $request->validate([
'name' => 'required',
'email' => 'required',
]);
Service::insertCustomer($data);
Service::sendMail($data);
return [
'saved'=> true
];
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment