In addition to actually removing records from your database, Eloquent can also “soft delete” models. When models are soft deleted, they are not actually removed from your database. Instead, a deleted_at attribute is set on the model and inserted into the database. If a model has a non-null deleted_at value, the model has been soft deleted. To enable soft …
Free SSL Implementation With Certbot
You are a web developer and want to implement HTTPS on your site. Will you need to purchase SSL Certificate? – Surely, YES. But there is letsencrypt. If you use letsencrypt, you can enable HTTPS on your site freely. As a way to implement letsencrypt to enable HTTPS, you can use Certbot ACME client. https://certbot.eff.org …