check if data inserted in database laravel code example
Example: how to check if query is successfully inserted laravel
try {
DB::beginTransaction();
// your code
DB::commit();
}catch (Exception $e) {
DB::rollback();
// other actions
}