Posts tagged 'laravel'
0 comments / March 13, 2023
How to fetch data from database in Laravel
In Laravel, you can fetch data from a database using the built-in Query Builder or Eloquent ORM.
0 comments / March 12, 2023
Solved: How to check if string is already encrypted in laravel
In Laravel, We can encrypt a string using encryptString method in the Crypt facade. All the characters in the string are encrypted using OpenSSL and AES-256-CBC Cipher. The encrypted string is signed with MAC ( Message Authentication Code )
0 comments / January 29, 2023
Generate models for existing database tables - Laravel
This article will help you generate / build models for your existing database tables through laravel artisan command
0 comments / January 29, 2023
How to generate migrations for existing database - Laravel
Create laravel migrations for the existing database or specific table.