diff --git a/database/factories/ArticleFactory.php b/database/factories/ArticleFactory.php index 3e15408..57c212c 100644 --- a/database/factories/ArticleFactory.php +++ b/database/factories/ArticleFactory.php @@ -20,7 +20,7 @@ public function definition(): array { return [ 'feed_id' => Feed::factory(), - 'url' => $this->faker->url(), + 'url' => $this->faker->unique()->url(), 'title' => $this->faker->sentence(), 'description' => $this->faker->paragraph(), 'content' => $this->faker->paragraphs(3, true), diff --git a/resources/views/components/page-header.blade.php b/resources/views/components/page-header.blade.php new file mode 100644 index 0000000..196509c --- /dev/null +++ b/resources/views/components/page-header.blade.php @@ -0,0 +1,16 @@ +@props(['title', 'subtitle' => null]) + +
{{ $subtitle }}
+ @endif +- Review and manage article routing -
-- Manage your platform channels and linked accounts -
-- Overview of your feed management system -
-- Manage your news feed sources -
-- Manage connections between your feeds and channels -
-