This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install Tailwind | |
npm i tailwindcss autoprefixer -D | |
# Create a Tailwind configuration file | |
npx tailwindcss init -p | |
# Setup the CSS file | |
cat <<EOF > ./resources/css/app.css | |
@tailwind base; | |
@tailwind components; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// A PHP file containing a variety of PHP features for testing purposes. | |
namespace App { | |
use namespace\Meta\AbstractClass; | |
trait Composition { | |
public function foo() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Illuminate\Support { | |
class Str { | |
public static function myMacro() {} | |
} | |
}; |
OlderNewer