Skip to content

Conversation

AhmedAlaa4611
Copy link
Contributor

Problem

The Laravel documentation incorrectly shows:

@import "tailwindcss";

@source "./../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views";

However, the actual implementation is:

@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';

Fix

  • Changed double quotes to single quotes for consistency.
  • Updated @source path to include *.blade.php, ensuring it correctly references the Blade templates in the Pagination views directory.

This PR corrects the documentation to reflect the actual implementation.

@taylorotwell taylorotwell merged commit 8837a4b into laravel:12.x Mar 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants