1
0
Fork 0
mirror of https://github.com/archtechx/laravel-seo.git synced 2025-12-12 09:54:03 +00:00

Directive support for Flipp

This commit is contained in:
Samuel Štancl 2021-05-24 11:40:17 +02:00
parent 2dc7b7048e
commit 6b575dec29
2 changed files with 18 additions and 0 deletions

View file

@ -25,16 +25,26 @@ class SEOServiceProvider extends ServiceProvider
], 'seo-views'); ], 'seo-views');
BladeHelper::directive('seo', function (...$args) { BladeHelper::directive('seo', function (...$args) {
// Flipp supports more arguments
if ($args[0] === 'flipp') {
array_shift($args);
return seo()->flipp(...$args);
}
// Two arguments indicate that we're setting a value, e.g. `@seo('title', 'foo')
if (count($args) === 2) { if (count($args) === 2) {
return seo()->set($args[0], $args[1]); return seo()->set($args[0], $args[1]);
} }
// An array means we don't return anything, e.g. `@seo(['title' => 'foo'])
if (is_array($args[0])) { if (is_array($args[0])) {
seo($args[0]); seo($args[0]);
return null; return null;
} }
// A single value means we fetch a value, e.g. `@seo('title')
return seo()->get($args[0]); return seo()->get($args[0]);
}); });
} }

View file

@ -42,3 +42,11 @@ test('flipp images are used as the cover images', function () {
expect(seo()->flipp('blog')) expect(seo()->flipp('blog'))
->toBe(seo('image')); ->toBe(seo('image'));
}); });
test('the blade directive can be used with flipp', function () {
seo()->flipp('blog', 'abc');
seo()->title('foo')->description('bar');
expect(blade("@seo('flipp', 'blog')"))->toBe(seo()->flipp('blog'));
});