We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a75f5e2 commit 73b447fCopy full SHA for 73b447f
src/Laravel/AipServiceProvider.php
@@ -34,6 +34,24 @@ protected function registerBladeDirectives()
34
{
35
return "<?php echo Arabic::getCharset($value); ?>";
36
});
37
+
38
+ // Compress
39
+ Blade::directive('compress', function($value)
40
+ {
41
+ return "<?php echo Arabic::compress($value); ?>";
42
+ });
43
44
+ // Glyphs
45
+ Blade::directive('glyphs', function($value)
46
47
+ return "<?php echo Arabic::utf8Glyphs($value); ?>";
48
49
50
+ // Identify
51
+ Blade::directive('identify', function($value)
52
53
+ return "<?php echo Arabic::identify($value); ?>";
54
55
}
56
57
/**
0 commit comments