DeveloperBreeze

Tutorials Programming Tutorials, Guides & Best Practices

Explore 149+ expertly crafted tutorials tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

Building a Laravel Application with Vue.js for Dynamic Interfaces

Tutorial November 16, 2024
php

   module.exports = {
       content: [
           './resources/**/*.blade.php',
           './resources/**/*.js',
           './resources/**/*.vue',
       ],
       theme: {
           extend: {},
       },
       plugins: [],
   };

Open or create resources/css/app.css and add the Tailwind CSS directives:

Building a React Application with Vite and Tailwind CSS

Tutorial August 14, 2024
javascript nodejs

Open your browser and navigate to http://localhost:5173/ (or the port provided by Vite). You should see the default React application running with Tailwind CSS included.

Depending on the needs of your project, you might want to add additional packages. Below are some commonly used ones in React projects:

Building Responsive Web Designs with Tailwind CSS

Tutorial August 05, 2024
css

After making changes to the configuration, rebuild the CSS:

You've successfully set up Tailwind CSS and built a responsive web layout. Tailwind's utility-first approach provides a flexible and efficient way to create modern web designs without writing custom CSS.

Automatically add Tailwind CSS and jQuery classes to any table

Note August 03, 2024
javascript css html

  • px-6 py-4 whitespace-nowrap text-sm text-gray-900: Data cell styling.

Feel free to adjust the class names to fit your design requirements.