Comments for Devnote https://devnote.in/ Web Development Blog Company, Services India Mon, 24 Nov 2025 04:56:46 +0000 hourly 1 https://wordpress.org/?v=6.9.4 Comment on Laravel: How to Do Comments in Blade Files? by Devnote team https://devnote.in/laravel-how-to-do-comments-in-blade-files/#comment-11378 Tue, 19 Nov 2024 04:03:09 +0000 https://devnote.in/?p=283#comment-11378 In reply to Arcelia Essen.

Good evening! I’m glad the blog was helpful to you. ? If you have any more questions or need support, feel free to ask. Wishing you success on your journey! ?

]]>
Comment on How to solve Root composer.json requires PHP ^7.3 but your PHP version (8.0.0) does not satisfy that requirement by Devnote team https://devnote.in/how-to-solve-root-composer-json-requires-php-7-3-but-your-php-version-8-0-0-does-not-satisfy-that-requirement/#comment-11377 Tue, 19 Nov 2024 04:02:01 +0000 https://devnote.in/?p=2634#comment-11377 In reply to Gugi.

Thank you! ? Happy to help anytime! ?

]]>
Comment on How to solve Root composer.json requires PHP ^7.3 but your PHP version (8.0.0) does not satisfy that requirement by Devnote team https://devnote.in/how-to-solve-root-composer-json-requires-php-7-3-but-your-php-version-8-0-0-does-not-satisfy-that-requirement/#comment-11376 Tue, 19 Nov 2024 04:01:18 +0000 https://devnote.in/?p=2634#comment-11376 In reply to Timothy.

You’re very welcome! I’m glad I could help you resolve your issue. If you need assistance with anything else, just let me know. Happy coding! ?

]]>
Comment on How to solve Root composer.json requires PHP ^7.3 but your PHP version (8.0.0) does not satisfy that requirement by Devnote team https://devnote.in/how-to-solve-root-composer-json-requires-php-7-3-but-your-php-version-8-0-0-does-not-satisfy-that-requirement/#comment-11374 Tue, 19 Nov 2024 04:00:57 +0000 https://devnote.in/?p=2634#comment-11374 In reply to Ociba James.

You’re most welcome! I’m glad your problem is resolved. ? If you have more questions in the future, feel free to ask. Happy coding! ?

]]>
Comment on How to create laravel backup and display it by Devnote team https://devnote.in/how-to-create-laravel-backup-and-display-it/#comment-11373 Tue, 19 Nov 2024 04:00:07 +0000 https://devnote.in/?p=1263#comment-11373 Let’s break down the two lines and explain their purpose:

1. $disk = Storage::disk(config(‘laravel-backup.backup.destination.disks’)[0]);
Purpose:
This line is creating a $disk instance that corresponds to a specific storage disk in Laravel.

Breakdown:

config(‘laravel-backup.backup.destination.disks’):
Retrieves the array of disk names configured in the laravel-backup package’s configuration file (likely found in config/laravel-backup.php under the backup.destination.disks key).
[0]:
Gets the first disk name from the array.
Storage::disk():
Creates a storage instance for the specified disk, allowing you to interact with files stored on that disk.
2. $files = $disk->files(‘/Backup_folder_name/’);
Purpose:
Retrieves the list of files from the /Backup_folder_name/ directory on the specified disk.

Breakdown:

$disk->files(‘‘):
Fetches all files from the specified directory
on the disk represented by $disk.

]]>
Comment on 1030 – Got error 176 “Read the page with wrong checksum” from storage engine Aria by Devnote team https://devnote.in/1030-got-error-176-read-the-page-with-wrong-checksum-from-storage-engine-aria/#comment-11372 Tue, 19 Nov 2024 03:58:50 +0000 https://devnote.in/?p=2829#comment-11372 In reply to sangchi.

I’m glad you found it helpful! Thank you for your kind words. ?

]]>
Comment on How to add a date filter to Django admin? by Devnote team https://devnote.in/how-to-add-a-date-filter-to-django-admin/#comment-11371 Tue, 19 Nov 2024 03:56:53 +0000 https://devnote.in/?p=1910#comment-11371 In reply to Misho.

You’re very welcome! I’m glad I could help. Cheers to your success! ?

]]>
Comment on Python convert CSV to HTML Table by hugo https://devnote.in/python-convert-csv-to-html-table/#comment-5881 Fri, 26 Jan 2024 23:23:54 +0000 https://devnote.in/?p=1564#comment-5881 How can I display the table vertically?

name, raj
salary, 1000
age, 22

]]>
Comment on How to add a date filter to Django admin? by Misho https://devnote.in/how-to-add-a-date-filter-to-django-admin/#comment-4992 Tue, 17 Oct 2023 11:30:47 +0000 https://devnote.in/?p=1910#comment-4992 Many thanks for the simple and elegant solution.
Cheers!

]]>
Comment on 1030 – Got error 176 “Read the page with wrong checksum” from storage engine Aria by sangchi https://devnote.in/1030-got-error-176-read-the-page-with-wrong-checksum-from-storage-engine-aria/#comment-4927 Tue, 03 Oct 2023 17:16:10 +0000 https://devnote.in/?p=2829#comment-4927 Good Tutorial. Thank you.

]]>