How to keep in touch with leads?

How to keep in touch with leads?

How to keep in touch with leads? – For our Japanese classes, we get enquiries from website https://japaneseclassesinpune.com

Many of the potential students do not join our classes. But we keep a record and keep informing them about our upcoming batches. As expected, some of those join our classes sooner or later.

How do we do this?

When a potential student submits enquiry form, below happens automatically:

1. We get an sms alert (we want to act fast since we know the lead must have contacted other classes).
2. The student’s number is stored in a portal called miaalo.com along with other students who might have previously submitted form.

https://miaalo.com allows us to send bulk sms to these students. So we keep all of them updated about our activities on a regular basis.

If you would like to have this implemented on your site then please click on below link:

https://api.whatsapp.com/send?phone=+919604372278&text=Interested%20in%20keeping%20in%20touch%20with%20leads

Laravel Soft Deleting

Laravel Soft Deleting

How to use it?

  • When the delete method is called on the model, the deleted_at column will be set to current date and time.
  • When a model that uses soft deletes is queried, the soft deleted records will be automatically excluded in the query results. .

 

Various methods related to soft delete

  • trashed(): Determines if a model instance has been soft deleted

if ($flight->trashed()) {
//
}

  • withTrashed(): This method forces soft deleted records to appear in a result

$flights = App\Flight::withTrashed()
->where(‘account_id’, 1)
->get();

  • onlyTrashed(): This method will retrieve only soft deleted records

$flights = App\Flight::onlyTrashed()
->where(‘airline_id’, 1)
->get();

  • restore(): This un-deletes the soft deleted record i.e., restores the soft deleted record into ‘active’ state.

App\Flight::withTrashed()
->where(‘airline_id’, 1)
->restore();

  • forceDelete(): Permanently removes a soft deleted record.

 

Conclusion

Soft delete feature is a very useful feature of Laravel. This feature helps us to retrieve a record from database in case if a wrong record was deleted from the user interface. Implementing this is Laravel by following the above steps is really easy.

 

References

 

Timer: Business Groups and Dixit Diet (2 warnings)

Timer: Business Groups and Dixit Diet (2 warnings)

Timer: Business Groups and Dixit Diet app is useful when every presenter in a large group is given limited time. If each person does not adhere to time then meeting is delayed. This app is extremely useful in business groups like BNI and Rotary Means Business.

You can configure the warning times as per your groups convention and save it.

 

Available on Play Store
 

Card Magic: Reading Mind

Card Magic: Reading Mind

Card Magic: Reading Mind – When technology and human psychology is used in the best possible way, it works like magic!

You will be shown 21 cards divided in 3 rows. Choose any one card in your mind (do not touch any card) and tap on the row it is in (there is separate button for that).

Our high tech app Card Magic is trying to figure out which card you look at more affectionately. We currently need around 4 tries to guess your card. So you will be requested to select row your card is in.

You can try to fool the app by pretending to look at some other card but you will fail 999 times out of 1000. Hope you master that look when you cool fool the app.

 

Available on Play Store

Brain Wave : 4 Attempts is a Norm

Brain Wave : 4 Attempts is a Norm

Brain Wave : 4 Attempts is a Norm – Read this blog to learn about Brain Wave : 4 Attempts is a Norm

Life gives us feedback based on our actions and choices. Do we really analyse that feedback and act accordingly? Here is an Android Game to practice exactly that! Understand the feedback and act accordingly. Goal is figure to out four colour combination by trial and error based on feedback. Tap each circle to choose its colour and tap. You will get immediate feedback: half black circle means only colour is right and full black means both colour and position is right. Keep trying till you figure out colours and exact position. Try solving in 4 attempts.

 

Available on Play Store

 

All search results