#laravel
Read more stories on Hashnode
Articles with this tag
$request->validate([ 'email' => ['required','string','unique:users,email,'.$user_id], 'username' =>...
Here is a simple way to implement the items count along with date in past 7 days. Of course you can change the date range. Here is the code for...
Note: For personal reference. Check out if it helps you. Length of various types of integers in mysql/ Laravel...
These variables can help you out a lot. · These are the various status variables available inside @foreach loop. $loop->index The index of the...
File Upload & Delete helper function for Laravel · Here is a quick helper function to upload the file in laravel application. if...
Here's a quick validation rules for image dimension in Laravel public function postImage(Request $request) { $this->validate($request, [ ...