97
app/Actions/Demo/GenerateDemoAnimeVideos.php
Executable file
97
app/Actions/Demo/GenerateDemoAnimeVideos.php
Executable file
@@ -0,0 +1,97 @@
|
||||
<?php
|
||||
|
||||
namespace App\Actions\Demo;
|
||||
|
||||
use App\Models\Episode;
|
||||
use App\Models\Title;
|
||||
use App\Models\Video;
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Database\Eloquent\Collection;
|
||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
||||
|
||||
class GenerateDemoAnimeVideos
|
||||
{
|
||||
public function execute(): void
|
||||
{
|
||||
$output = new ConsoleOutput();
|
||||
$output->write('Generating demo anime videos... ', true);
|
||||
|
||||
$this->createTitleLinks();
|
||||
$this->createEpisodeLinks();
|
||||
}
|
||||
|
||||
private function createTitleLinks(): void
|
||||
{
|
||||
Title::where('is_series', false)
|
||||
->select('id')
|
||||
->whereDoesntHave('videos', function ($query) {
|
||||
$query->where('category', 'full')->where('origin', 'local');
|
||||
})
|
||||
->chunkById(100, function (Collection $titles) {
|
||||
$titleVideos = $titles
|
||||
->pluck('id')
|
||||
->map(fn($titleId) => $this->getVideosData($titleId))
|
||||
->flatten(1);
|
||||
Video::insert($titleVideos->toArray());
|
||||
});
|
||||
}
|
||||
|
||||
private function createEpisodeLinks(): void
|
||||
{
|
||||
Episode::whereDoesntHave('videos', function ($query) {
|
||||
$query->where('category', 'full')->where('origin', 'local');
|
||||
})->chunkById(100, function (Collection $episodes) {
|
||||
$episodeVideos = $episodes
|
||||
->map(
|
||||
fn(Episode $episode) => $this->getVideosData(
|
||||
$episode->title_id,
|
||||
$episode,
|
||||
),
|
||||
)
|
||||
->flatten(1);
|
||||
Video::insert($episodeVideos->toArray());
|
||||
});
|
||||
}
|
||||
|
||||
private function getVideosData($titleId, Episode $episode = null): array
|
||||
{
|
||||
$sharedData = [
|
||||
'category' => 'full',
|
||||
'title_id' => $titleId,
|
||||
'season_num' => $episode?->season_number,
|
||||
'episode_num' => $episode?->episode_number,
|
||||
'episode_id' => $episode?->id,
|
||||
'origin' => 'local',
|
||||
'approved' => true,
|
||||
'updated_at' => Carbon::now(),
|
||||
'user_id' => 1,
|
||||
];
|
||||
|
||||
$urls = [
|
||||
'https://www.youtube.com/embed/ByXuk9QqQkk',
|
||||
'https://player.vimeo.com/video/208890816',
|
||||
'https://www.dailymotion.com/embed/video/x4qi23d',
|
||||
'https://www.youtube.com/embed/xU47nhruN-Q',
|
||||
'https://google.com',
|
||||
];
|
||||
|
||||
$languages = ['en', 'ru', 'fr', 'en', 'en'];
|
||||
|
||||
$videos = [];
|
||||
for ($i = 0; $i <= 4; $i++) {
|
||||
$num = $i + 1;
|
||||
|
||||
$videos[] = array_merge($sharedData, [
|
||||
'name' => "Mirror $num",
|
||||
'src' => $urls[$i],
|
||||
'quality' => $i === 3 ? '4k' : 'hd',
|
||||
'language' => $languages[$i],
|
||||
'type' => $i === 4 ? 'external' : 'embed',
|
||||
'upvotes' => rand(1, 200),
|
||||
'downvotes' => rand(1, 30),
|
||||
'created_at' => Carbon::now()->subDay(),
|
||||
]);
|
||||
}
|
||||
return $videos;
|
||||
}
|
||||
}
|
||||
131
app/Actions/Demo/GenerateDemoComments.php
Executable file
131
app/Actions/Demo/GenerateDemoComments.php
Executable file
@@ -0,0 +1,131 @@
|
||||
<?php
|
||||
|
||||
namespace App\Actions\Demo;
|
||||
|
||||
use App\Models\Episode;
|
||||
use App\Models\Title;
|
||||
use App\Models\User;
|
||||
use Common\Files\Traits\HandlesEntryPaths;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
use Illuminate\Database\Eloquent\Factories\Sequence;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Symfony\Component\Console\Helper\ProgressBar;
|
||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
||||
|
||||
class GenerateDemoComments
|
||||
{
|
||||
use HandlesEntryPaths;
|
||||
|
||||
private Collection $users;
|
||||
|
||||
private int $currentId = 1;
|
||||
|
||||
public function execute(string $variant = null): void
|
||||
{
|
||||
DB::table('comment_reports')->truncate();
|
||||
DB::table('comment_votes')->truncate();
|
||||
$this->currentId = DB::table('comments')->max('id') + 1;
|
||||
|
||||
$demoEmails = collect(
|
||||
json_decode(
|
||||
file_get_contents(app_path('Actions/Demo/demo-users.json')),
|
||||
true,
|
||||
),
|
||||
)->pluck('email');
|
||||
$this->users = User::whereIn('email', $demoEmails)->get();
|
||||
|
||||
// movies
|
||||
$this->generateFor(
|
||||
Title::where('release_date', '<', now()->subDays(6))
|
||||
->where('is_series', false)
|
||||
->where('popularity', '>=', 10),
|
||||
$variant === 'anime'
|
||||
? app_path('Actions/Demo/demo-anime-comments.json')
|
||||
: app_path('Actions/Demo/demo-movie-comments.json'),
|
||||
);
|
||||
|
||||
// series
|
||||
$this->generateFor(
|
||||
Title::where('release_date', '<', now()->subDays(6))
|
||||
->withCount('episodes')
|
||||
->where('is_series', true)
|
||||
->where('popularity', '>=', 10)
|
||||
->has('episodes', '<', 400),
|
||||
$variant === 'anime'
|
||||
? app_path('Actions/Demo/demo-anime-comments.json')
|
||||
: app_path('Actions/Demo/demo-series-comments.json'),
|
||||
);
|
||||
|
||||
// episodes
|
||||
$this->generateFor(
|
||||
Episode::where('release_date', '<', now()->subDays(6))->whereHas(
|
||||
'title',
|
||||
function ($query) {
|
||||
$query->where('popularity', '>=', 1);
|
||||
},
|
||||
),
|
||||
$variant === 'anime'
|
||||
? app_path('Actions/Demo/demo-anime-comments.json')
|
||||
: app_path('Actions/Demo/demo-episode-comments.json'),
|
||||
);
|
||||
}
|
||||
|
||||
protected function generateFor(Builder $builder, string $path): void
|
||||
{
|
||||
$query = $builder->has('comments', '<', 40)->select('id');
|
||||
$count = $query->count();
|
||||
|
||||
if (!$count) {
|
||||
return;
|
||||
}
|
||||
|
||||
$output = new ConsoleOutput();
|
||||
$progressBar = new ProgressBar($output, $count);
|
||||
$progressBar->start();
|
||||
|
||||
$output->write(
|
||||
"Generating comments for {$builder->getModel()->getTable()}",
|
||||
true,
|
||||
);
|
||||
|
||||
$userSequence = new Sequence(...$this->users->pluck('id')->toArray());
|
||||
$data = json_decode(file_get_contents($path), true);
|
||||
|
||||
$itemComments = collect($data)
|
||||
->slice(0, rand(40, 118))
|
||||
->map(function ($comment) use ($userSequence) {
|
||||
$date = now()
|
||||
->subMonth(rand(0, 2))
|
||||
->subDays(rand(1, 12));
|
||||
return [
|
||||
'user_id' => $userSequence(),
|
||||
'content' => $comment['comment'],
|
||||
'upvotes' => rand(5, 200),
|
||||
'downvotes' => rand(0, 20),
|
||||
'reports_count' => rand(0, 3),
|
||||
'created_at' => $date,
|
||||
'updated_at' => $date,
|
||||
];
|
||||
});
|
||||
|
||||
$query
|
||||
->lazyById(100)
|
||||
->each(function ($item) use ($progressBar, $itemComments) {
|
||||
$payload = $itemComments->map(function ($comment) use ($item) {
|
||||
$data = array_merge($comment, [
|
||||
'id' => $this->currentId,
|
||||
'path' => $this->encodePath($this->currentId),
|
||||
'commentable_id' => $item->id,
|
||||
'commentable_type' => $item->getMorphClass(),
|
||||
]);
|
||||
$this->currentId++;
|
||||
return $data;
|
||||
});
|
||||
DB::table('comments')->insert($payload->toArray());
|
||||
$progressBar->advance();
|
||||
});
|
||||
|
||||
$progressBar->finish();
|
||||
}
|
||||
}
|
||||
100
app/Actions/Demo/GenerateDemoReviews.php
Executable file
100
app/Actions/Demo/GenerateDemoReviews.php
Executable file
@@ -0,0 +1,100 @@
|
||||
<?php
|
||||
|
||||
namespace App\Actions\Demo;
|
||||
|
||||
use App\Models\Title;
|
||||
use App\Models\User;
|
||||
use Common\Files\Traits\HandlesEntryPaths;
|
||||
use Illuminate\Database\Eloquent\Factories\Sequence;
|
||||
use Illuminate\Support\Collection;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Symfony\Component\Console\Helper\ProgressBar;
|
||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
||||
|
||||
class GenerateDemoReviews
|
||||
{
|
||||
use HandlesEntryPaths;
|
||||
|
||||
private Collection $users;
|
||||
|
||||
public function execute(): void
|
||||
{
|
||||
DB::table('review_reports')->truncate();
|
||||
DB::table('review_feedback')->truncate();
|
||||
|
||||
$demoEmails = collect(
|
||||
json_decode(
|
||||
file_get_contents(app_path('Actions/Demo/demo-users.json')),
|
||||
true,
|
||||
),
|
||||
)->pluck('email');
|
||||
$this->users = User::whereIn('email', $demoEmails)->get();
|
||||
|
||||
$this->generateFor('movie');
|
||||
$this->generateFor('series');
|
||||
}
|
||||
|
||||
protected function generateFor(string $type): void
|
||||
{
|
||||
$query = Title::where('is_series', $type == 'series')
|
||||
->where('popularity', '>=', 10)
|
||||
->where('release_date', '<', now()->subDays(6))
|
||||
->has('reviews', '<', 40)
|
||||
->select('id');
|
||||
$count = $query->count();
|
||||
|
||||
if ($count === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
$output = new ConsoleOutput();
|
||||
$progressBar = new ProgressBar($output, $count);
|
||||
$progressBar->start();
|
||||
|
||||
$output->write(
|
||||
"Generating reviews for {$query->getModel()->getTable()}",
|
||||
true,
|
||||
);
|
||||
|
||||
$userSequence = new Sequence(...$this->users->pluck('id')->toArray());
|
||||
|
||||
$data = json_decode(
|
||||
file_get_contents(app_path("Actions/Demo/demo-$type-reviews.json")),
|
||||
true,
|
||||
);
|
||||
|
||||
$movieReviews = collect($data)
|
||||
->slice(0, rand(40, $this->users->count()))
|
||||
->map(function ($review) use ($userSequence) {
|
||||
$date = now()
|
||||
->subMonth(rand(0, 2))
|
||||
->subDays(rand(1, 12));
|
||||
return [
|
||||
'user_id' => $userSequence(),
|
||||
'title' => $review['title'],
|
||||
'body' => $review['body'],
|
||||
'score' => $review['score'],
|
||||
'has_text' => true,
|
||||
'helpful_count' => rand(10, 200),
|
||||
'not_helpful_count' => rand(0, 20),
|
||||
'created_at' => $date,
|
||||
'updated_at' => $date,
|
||||
];
|
||||
});
|
||||
|
||||
$query
|
||||
->lazyById(100)
|
||||
->each(function ($movie) use ($movieReviews, $progressBar) {
|
||||
$payload = $movieReviews->map(
|
||||
fn($review) => array_merge($review, [
|
||||
'reviewable_id' => $movie->id,
|
||||
'reviewable_type' => Title::MODEL_TYPE,
|
||||
]),
|
||||
);
|
||||
DB::table('reviews')->insert($payload->toArray());
|
||||
$progressBar->advance();
|
||||
});
|
||||
|
||||
$progressBar->finish();
|
||||
}
|
||||
}
|
||||
185
app/Actions/Demo/GenerateDemoStreamVideos.php
Executable file
185
app/Actions/Demo/GenerateDemoStreamVideos.php
Executable file
@@ -0,0 +1,185 @@
|
||||
<?php
|
||||
|
||||
namespace App\Actions\Demo;
|
||||
|
||||
use App\Models\Episode;
|
||||
use App\Models\Title;
|
||||
use App\Models\Video;
|
||||
use App\Models\VideoCaption;
|
||||
use Illuminate\Database\Eloquent\Collection;
|
||||
use Illuminate\Database\Eloquent\Factories\Sequence;
|
||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
||||
|
||||
class GenerateDemoStreamVideos
|
||||
{
|
||||
protected array $demoVideos = [
|
||||
[
|
||||
'name' => 'Demo HLS',
|
||||
'src' =>
|
||||
'https://stream.mux.com/buWV5Srtc9vUQTWmgpTFkDNlA3zImB7C9CQ2CVgkZpI.m3u8',
|
||||
'type' => 'stream',
|
||||
'quality' => '1080p',
|
||||
],
|
||||
[
|
||||
'name' => 'Demo HLS',
|
||||
'src' =>
|
||||
'https://stream.mux.com/Rus46I1a5LSATgJ6YDhbDo024F7qHEYZBTbOxRZJdIn4.m3u8',
|
||||
'type' => 'stream',
|
||||
'quality' => '1080p',
|
||||
],
|
||||
[
|
||||
'name' => 'Demo HLS',
|
||||
'src' =>
|
||||
'https://stream.mux.com/E7hs5dNds85023rGvL4rrAjPI02BpRE2024XyFnjx007oj4.m3u8',
|
||||
'type' => 'stream',
|
||||
'quality' => '1080p',
|
||||
],
|
||||
[
|
||||
'name' => 'Demo HLS',
|
||||
'src' =>
|
||||
'https://stream.mux.com/Q20238p74cLNL4Bm2ivdjGnSozST6Gec2Ym1EuDnCMJI.m3u8',
|
||||
'type' => 'stream',
|
||||
'quality' => '1080p',
|
||||
],
|
||||
[
|
||||
'name' => 'Demo HLS',
|
||||
'src' =>
|
||||
'https://stream.mux.com/spmRS3NLqWHkkBGEYM4KRhj6Hytnat00AnPS8v3hj9qA.m3u8',
|
||||
'type' => 'stream',
|
||||
'quality' => '1080p',
|
||||
],
|
||||
[
|
||||
'name' => 'Demo WebM',
|
||||
'src' => 'storage/demo-videos/sprite-fright/sprite-fright.webm',
|
||||
'type' => 'video',
|
||||
'quality' => '1080p',
|
||||
'captions' => [
|
||||
[
|
||||
'name' => 'English',
|
||||
'language' => 'en',
|
||||
'url' =>
|
||||
'storage/demo-videos/sprite-fright/subs/sprite-fright.en.vtt',
|
||||
],
|
||||
[
|
||||
'name' => 'Russian',
|
||||
'language' => 'ru',
|
||||
'url' =>
|
||||
'storage/demo-videos/sprite-fright/subs/sprite-fright.ru.vtt',
|
||||
],
|
||||
[
|
||||
'name' => 'German',
|
||||
'language' => 'de',
|
||||
'url' =>
|
||||
'storage/demo-videos/sprite-fright/subs/sprite-fright.de.vtt',
|
||||
],
|
||||
[
|
||||
'name' => 'Italian',
|
||||
'language' => 'it',
|
||||
'url' =>
|
||||
'storage/demo-videos/sprite-fright/subs/sprite-fright.it.vtt',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
protected Sequence $demoVideoSequence;
|
||||
|
||||
public function execute(): void
|
||||
{
|
||||
$this->demoVideoSequence = new Sequence(...$this->demoVideos);
|
||||
|
||||
$output = new ConsoleOutput();
|
||||
$output->write('Generating demo stream videos... ', true);
|
||||
|
||||
$this->createVideosForAllMovies();
|
||||
$this->createEpisodeVideos();
|
||||
$this->createCaptions();
|
||||
}
|
||||
|
||||
private function createVideosForAllMovies(): void
|
||||
{
|
||||
Title::where('is_series', false)
|
||||
->whereDoesntHave(
|
||||
'videos',
|
||||
fn($query) => $query
|
||||
->where('origin', 'local')
|
||||
->where('category', 'full'),
|
||||
)
|
||||
->select('id')
|
||||
->chunkById(100, function (Collection $titles) {
|
||||
$titleVideos = $titles->map(
|
||||
fn($title) => $this->getVideoData($title->id),
|
||||
);
|
||||
Video::insert($titleVideos->toArray());
|
||||
});
|
||||
}
|
||||
|
||||
private function createCaptions(): void
|
||||
{
|
||||
collect($this->demoVideos)
|
||||
->filter(fn($video) => isset($video['captions']))
|
||||
->each(function ($data) {
|
||||
Video::where('origin', 'local')
|
||||
->where('category', 'full')
|
||||
->where('name', $data['name'])
|
||||
->whereDoesntHave('captions')
|
||||
->chunkById(100, function (Collection $videos) use ($data) {
|
||||
$captionPayload = $videos->flatMap(
|
||||
fn(Video $video) => array_map(
|
||||
fn($captionData) => [
|
||||
'name' => $captionData['name'],
|
||||
'language' => $captionData['language'],
|
||||
'url' => $captionData['url'],
|
||||
'video_id' => $video->id,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
],
|
||||
$data['captions'],
|
||||
),
|
||||
);
|
||||
VideoCaption::insert($captionPayload->toArray());
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
private function createEpisodeVideos(): void
|
||||
{
|
||||
Episode::whereDoesntHave(
|
||||
'videos',
|
||||
fn($query) => $query
|
||||
->where('origin', 'local')
|
||||
->where('category', 'full'),
|
||||
)->chunkById(100, function (Collection $episodes) {
|
||||
$episodeVideos = $episodes->map(
|
||||
fn(Episode $episode) => $this->getVideoData(
|
||||
$episode->title_id,
|
||||
$episode,
|
||||
),
|
||||
);
|
||||
Video::insert($episodeVideos->toArray());
|
||||
});
|
||||
}
|
||||
|
||||
private function getVideoData(int $titleId, Episode $episode = null): array
|
||||
{
|
||||
$sequence = $this->demoVideoSequence;
|
||||
$data = $sequence();
|
||||
|
||||
return [
|
||||
'name' => $data['name'],
|
||||
'src' => $data['src'],
|
||||
'type' => $data['type'],
|
||||
'category' => 'full',
|
||||
'quality' => $data['quality'],
|
||||
'title_id' => $titleId,
|
||||
'season_num' => $episode?->season_number,
|
||||
'episode_num' => $episode?->episode_number,
|
||||
'episode_id' => $episode?->id,
|
||||
'origin' => 'local',
|
||||
'approved' => true,
|
||||
'created_at' => now(),
|
||||
'updated_at' => now(),
|
||||
'language' => 'en',
|
||||
];
|
||||
}
|
||||
}
|
||||
53
app/Actions/Demo/GenerateDemoUsers.php
Executable file
53
app/Actions/Demo/GenerateDemoUsers.php
Executable file
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
namespace App\Actions\Demo;
|
||||
|
||||
use App\Models\User;
|
||||
use Illuminate\Database\Eloquent\Factories\Sequence;
|
||||
use Illuminate\Support\Str;
|
||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
||||
|
||||
class GenerateDemoUsers
|
||||
{
|
||||
public function execute(): void
|
||||
{
|
||||
$data = collect(
|
||||
json_decode(
|
||||
file_get_contents(
|
||||
base_path('app/Actions/Demo/demo-users.json'),
|
||||
),
|
||||
true,
|
||||
),
|
||||
)->unique('email');
|
||||
|
||||
$existing = User::whereIn('email', $data->pluck('email'))->get();
|
||||
$unique = $data->reject(
|
||||
fn($user) => $existing->contains('email', $user['email']),
|
||||
);
|
||||
|
||||
if ($unique->isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
$output = new ConsoleOutput();
|
||||
$output->write('Generating demo users... ', true);
|
||||
|
||||
$avatarSequence = new Sequence(...range(1, 75));
|
||||
|
||||
$users = $unique->map(function ($user) use ($avatarSequence) {
|
||||
$number = $avatarSequence();
|
||||
$gender = strtolower($user['gender']);
|
||||
return [
|
||||
'email' => $user['email'],
|
||||
'first_name' => $user['first_name'],
|
||||
'last_name' => $user['last_name'],
|
||||
'gender' => $gender,
|
||||
'password' => Str::random(),
|
||||
'email_verified_at' => now(),
|
||||
'avatar' => "https://xsgames.co/randomusers/assets/avatars/$gender/$number.jpg",
|
||||
];
|
||||
});
|
||||
|
||||
User::insert($users->toArray());
|
||||
}
|
||||
}
|
||||
41
app/Actions/Demo/GenerateDemoVideoVotes.php
Executable file
41
app/Actions/Demo/GenerateDemoVideoVotes.php
Executable file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
namespace App\Actions\Demo;
|
||||
|
||||
use App\Models\Video;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use Symfony\Component\Console\Helper\ProgressBar;
|
||||
use Symfony\Component\Console\Output\ConsoleOutput;
|
||||
|
||||
class GenerateDemoVideoVotes
|
||||
{
|
||||
public function execute(): void
|
||||
{
|
||||
// delete old votes
|
||||
DB::table('video_votes')->truncate();
|
||||
|
||||
$count = Video::where('upvotes', '<', 60)->count();
|
||||
|
||||
if ($count == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
$output = new ConsoleOutput();
|
||||
$output->write('Generating video votes... ', true);
|
||||
$progressBar = new ProgressBar($output, $count);
|
||||
$progressBar->start();
|
||||
|
||||
Video::select('id')
|
||||
->where('upvotes', '<', 60)
|
||||
->lazyById(100)
|
||||
->each(function (Video $video) use ($progressBar) {
|
||||
$video->update([
|
||||
'upvotes' => rand(60, 2100),
|
||||
'downvotes' => rand(50, 150),
|
||||
]);
|
||||
$progressBar->advance();
|
||||
});
|
||||
|
||||
$progressBar->finish();
|
||||
}
|
||||
}
|
||||
161
app/Actions/Demo/demo-anime-comments.json
Executable file
161
app/Actions/Demo/demo-anime-comments.json
Executable file
@@ -0,0 +1,161 @@
|
||||
[
|
||||
{
|
||||
"comment": "OMG, this anime had me on the edge of my seat! The action scenes were so freaking epic, and the plot was just mind-blowing."
|
||||
},
|
||||
{
|
||||
"comment": "Dude, I can't get enough of the awesome animation in this series. It's like a visual feast, man!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime is a total blast, yo! It's got a bit of everything – laughs, romance, and crazy adventures."
|
||||
},
|
||||
{
|
||||
"comment": "Bro, just when I thought I had it all figured out, this anime threw me for a loop! Loved all those surprises, man."
|
||||
},
|
||||
{
|
||||
"comment": "The character development in this anime is freaking awesome! I got super attached to the main crew and their struggles."
|
||||
},
|
||||
{
|
||||
"comment": "No lie, I binge-watched this entire series in one sitting. It's hella addictive, worth staying up all night for!"
|
||||
},
|
||||
{
|
||||
"comment": "If you want a feel-good anime with a positive message, this one's a winner. Left me with a big ol' smile, man!"
|
||||
},
|
||||
{
|
||||
"comment": "The voice acting in this anime is off the charts, bro! The emotions hit you right in the gut."
|
||||
},
|
||||
{
|
||||
"comment": "As an anime fanatic, I'm telling you, this one's the real deal. A hidden gem that needs more love, dude!"
|
||||
},
|
||||
{
|
||||
"comment": "The world-building in this anime is sick, man! I got lost in that crazy universe, couldn't get enough of it!"
|
||||
},
|
||||
{
|
||||
"comment": "Bro, the art style is out of this world! Every frame is like a work of art, totally blows your mind!"
|
||||
},
|
||||
{
|
||||
"comment": "Ngl, I haven't cried this much over an anime in forever. The feels hit you right in the heart, dude!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime took me on an emotional rollercoaster, man! I laughed, I cried, I freaking loved it all!"
|
||||
},
|
||||
{
|
||||
"comment": "The fight scenes are straight-up epic! They get your blood pumping, and you can't take your eyes off 'em."
|
||||
},
|
||||
{
|
||||
"comment": "Man, I'm jamming to the sick tunes in this anime. The soundtrack is fire, sets the perfect mood!"
|
||||
},
|
||||
{
|
||||
"comment": "If you're into mind-bending plots and crazy twists, you're gonna be mind-blown by this anime, bro!"
|
||||
},
|
||||
{
|
||||
"comment": "The supporting characters in this anime are just as rad as the main crew. I dig 'em all!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime knows how to balance humor and serious stuff. Keeps you entertained the whole time!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime ain't afraid to tackle deep questions, man. Makes you think about life and stuff, you know?"
|
||||
},
|
||||
{
|
||||
"comment": "Big props to this anime for showing respect to different cultures. It feels genuine, man."
|
||||
},
|
||||
{
|
||||
"comment": "The pacing in this anime is on point, dude. It keeps the story moving without dragging it out."
|
||||
},
|
||||
{
|
||||
"comment": "This anime's got a kickass mythology and lore. It adds a whole new dimension to the story!"
|
||||
},
|
||||
{
|
||||
"comment": "The friendships in this anime are so heartwarming, man. It's all about the bonds, and it hits you in the feels!"
|
||||
},
|
||||
{
|
||||
"comment": "Yo, I've been recommending this anime to everyone I know. It's a must-watch for any anime fan, no doubt!"
|
||||
},
|
||||
{
|
||||
"comment": "OMG, the humor in this anime had me cracking up big time! Laughed my guts out in every episode!"
|
||||
},
|
||||
{
|
||||
"comment": "I'm obsessed with the crazy character designs, man. Each one is so unique and stands out!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime is full of epic quotes that stick with you, dude. You'll be saying 'em all day long!"
|
||||
},
|
||||
{
|
||||
"comment": "I wish I could live in the world of this anime, man. The universe is so freaking cool!"
|
||||
},
|
||||
{
|
||||
"comment": "The character arcs in this anime are next-level, bro. You see 'em grow and change, and it's awesome!"
|
||||
},
|
||||
{
|
||||
"comment": "The action sequences are out of this world, man. They get your heart racing, no lie!"
|
||||
},
|
||||
{
|
||||
"comment": "Yo, this anime left me with a rollercoaster of emotions. Happy, sad, everything in between!"
|
||||
},
|
||||
{
|
||||
"comment": "I can't get enough of the catchy opening and ending themes, man. They get stuck in your head!"
|
||||
},
|
||||
{
|
||||
"comment": "The attention to detail in the animation is sick. It's all about those little things that make it pop!"
|
||||
},
|
||||
{
|
||||
"comment": "The villain in this anime is wicked! Love to hate 'em, bro!"
|
||||
},
|
||||
{
|
||||
"comment": "The character relationships feel so real and relatable, man. You get invested in their lives!"
|
||||
},
|
||||
{
|
||||
"comment": "OMG, the plot twists had me shook, bro. I never saw 'em coming, that's for sure!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime dives deep into life's big questions, man. Makes you ponder and stuff."
|
||||
},
|
||||
{
|
||||
"comment": "The art and animation quality never disappoint. It's top-notch all the way, dude!"
|
||||
},
|
||||
{
|
||||
"comment": "The emotional depth of this anime hits you hard, man. It's a rollercoaster ride!"
|
||||
},
|
||||
{
|
||||
"comment": "I couldn't stop watching once I started, dude. It's totally addicting!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime strikes the perfect balance between laughs and heartwarming moments. So darn enjoyable!"
|
||||
},
|
||||
{
|
||||
"comment": "The character backstories are on point, bro. It adds layers of awesomeness to the story!"
|
||||
},
|
||||
{
|
||||
"comment": "Yo, I'm impressed by how this anime respects different cultures. It's all about that diversity, man!"
|
||||
},
|
||||
{
|
||||
"comment": "The world-building in this anime is so freaking cool. It's like a whole new universe to explore!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime's all about friendship, love, and courage, man. Hits you right in the feels!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot keeps you guessing, bro. It's like a wild ride with twists at every turn!"
|
||||
},
|
||||
{
|
||||
"comment": "The character dynamics and chemistry are fire, man. It's a joy to watch 'em interact!"
|
||||
},
|
||||
{
|
||||
"comment": "OMG, the art style is mind-blowing! It's like a feast for the eyes, dude!"
|
||||
},
|
||||
{
|
||||
"comment": "I appreciate how this anime tackles real-world issues while still being hella entertaining."
|
||||
},
|
||||
{
|
||||
"comment": "The soundtrack adds so much to the anime, bro. It sets the mood perfectly!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime got me right in the feels, man. Laughed, cried, and cheered for the characters!"
|
||||
},
|
||||
{
|
||||
"comment": "The world-building and lore in this anime are insane, dude. It's a whole new dimension!"
|
||||
},
|
||||
{
|
||||
"comment": "This anime left me with a mix of emotions – from laughter to tears. Freaking unforgettable!"
|
||||
}
|
||||
]
|
||||
365
app/Actions/Demo/demo-episode-comments.json
Executable file
365
app/Actions/Demo/demo-episode-comments.json
Executable file
@@ -0,0 +1,365 @@
|
||||
[
|
||||
{
|
||||
"comment": "OMG, this episode blew my mind! So many unexpected twists!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this episode and I'm speechless. It's a game-changer!"
|
||||
},
|
||||
{
|
||||
"comment": "The suspense in this episode is unreal. Kept me on the edge of my seat!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me laughing out loud. So hilarious!"
|
||||
},
|
||||
{
|
||||
"comment": "The emotional depth in this episode is incredible. It hit me right in the feels!"
|
||||
},
|
||||
{
|
||||
"comment": "Just finished watching this episode and I'm in awe. So well-crafted!"
|
||||
},
|
||||
{
|
||||
"comment": "The acting in this episode is phenomenal. Each performance is top-notch!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me hooked from start to finish. So captivating!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot development in this episode is mind-blowing. It's building up to something big!"
|
||||
},
|
||||
{
|
||||
"comment": "Just witnessed the biggest cliffhanger in this episode. I need to know what happens next!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the characters in this episode is electric. I love their interactions!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me on an emotional rollercoaster. I laughed, I cried, I felt it all!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is stunning. Each shot is visually breathtaking!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster ride of emotions. It's intense and heart-wrenching!"
|
||||
},
|
||||
{
|
||||
"comment": "The dialogue in this episode is sharp and impactful. It kept me engaged!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a masterpiece. The writing, the acting, everything is on point!"
|
||||
},
|
||||
{
|
||||
"comment": "The character growth in this episode is remarkable. They're evolving so beautifully!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode left me with so many questions. I can't wait for the next one!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the actors in this episode is undeniable. They have great synergy!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster of emotions. It had me on the edge of my seat!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is stunning. It adds another layer of depth!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a turning point in the series. It's a game-changer!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this episode are outstanding. The actors brought their A-game!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode kept me guessing till the very end. So many surprises!"
|
||||
},
|
||||
{
|
||||
"comment": "The writing in this episode is brilliant. The storytelling is top-notch!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me on an emotional rollercoaster. I'm still recovering!"
|
||||
},
|
||||
{
|
||||
"comment": "The intensity in this episode is off the charts. It had me at the edge of my seat!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this episode and I'm shook. It took the series to a whole new level!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is breathtaking. Each shot is a work of art!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me hooked from the first minute. Such a gripping storyline!"
|
||||
},
|
||||
{
|
||||
"comment": "The character dynamics in this episode are so well-executed. I love seeing their relationships!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster of emotions. It made me laugh and cry!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot twists in this episode are mind-blowing. They kept me on my toes!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode left me speechless. It's a game-changer!"
|
||||
},
|
||||
{
|
||||
"comment": "The acting in this episode is exceptional. The performances are so powerful!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me at the edge of my seat. So intense and suspenseful!"
|
||||
},
|
||||
{
|
||||
"comment": "The storytelling in this episode is masterful. It's a captivating journey!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me in tears. It touched my heart in ways I didn't expect!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the characters in this episode is fire. I ship them so hard!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster ride. It had me gasping for breath!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is stunning. Each frame is like a painting!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a game-changer. It took the series to a whole new level!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this episode are outstanding. The actors brought so much depth!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me at the edge of my seat. I couldn't look away!"
|
||||
},
|
||||
{
|
||||
"comment": "The writing in this episode is exceptional. It's smart and thought-provoking!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me in tears. It's an emotional rollercoaster!"
|
||||
},
|
||||
{
|
||||
"comment": "The tension in this episode is palpable. It kept me on the edge of my seat!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this episode and I'm in awe. It's a game-changer!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is breathtaking. Each shot is visually stunning!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me hooked from the start. Such a compelling story!"
|
||||
},
|
||||
{
|
||||
"comment": "The character development in this episode is remarkable. I love seeing their growth!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster of emotions. It made me laugh and cry!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot twists in this episode blew my mind. I didn't see them coming!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode left me speechless. It's a turning point in the series!"
|
||||
},
|
||||
{
|
||||
"comment": "The acting in this episode is outstanding. The performances are so powerful!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me on the edge of my seat. It's so suspenseful!"
|
||||
},
|
||||
{
|
||||
"comment": "The storytelling in this episode is brilliant. It kept me engaged throughout!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode touched my heart. It's emotional and impactful!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the characters in this episode is electric. Their interactions are captivating!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster ride. It had me on an emotional high!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is stunning. Each shot is visually breathtaking!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a game-changer. It took the series to a whole new level!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this episode are outstanding. The actors delivered powerful portrayals!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me at the edge of my seat. I couldn't look away!"
|
||||
},
|
||||
{
|
||||
"comment": "The writing in this episode is exceptional. It's gripping and thought-provoking!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me in tears. It's an emotional rollercoaster!"
|
||||
},
|
||||
{
|
||||
"comment": "The tension in this episode is palpable. It kept me on the edge of my seat!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this episode and my mind is blown. It's a game-changer!"
|
||||
},
|
||||
{
|
||||
"comment": "The suspense in this episode is unreal. Kept me on the edge of my seat!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me laughing out loud. So hilarious!"
|
||||
},
|
||||
{
|
||||
"comment": "The emotional depth in this episode is incredible. It hit me right in the feels!"
|
||||
},
|
||||
{
|
||||
"comment": "Just finished watching this episode and I'm in awe. So well-crafted!"
|
||||
},
|
||||
{
|
||||
"comment": "The acting in this episode is phenomenal. Each performance is top-notch!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me hooked from start to finish. So captivating!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot development in this episode is mind-blowing. It's building up to something big!"
|
||||
},
|
||||
{
|
||||
"comment": "Just witnessed the biggest cliffhanger in this episode. I need to know what happens next!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the characters in this episode is electric. I love their interactions!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me on an emotional rollercoaster. I laughed, I cried, I felt it all!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is stunning. Each shot is visually breathtaking!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster ride of emotions. It's intense and heart-wrenching!"
|
||||
},
|
||||
{
|
||||
"comment": "The dialogue in this episode is sharp and impactful. It kept me engaged!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a masterpiece. The writing, the acting, everything is on point!"
|
||||
},
|
||||
{
|
||||
"comment": "The character growth in this episode is remarkable. They're evolving so beautifully!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode left me with so many questions. I can't wait for the next one!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the actors in this episode is undeniable. They have great synergy!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster of emotions. It made me laugh and cry!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot twists in this episode are mind-blowing. They kept me on my toes!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode left me speechless. It's a game-changer!"
|
||||
},
|
||||
{
|
||||
"comment": "The acting in this episode is exceptional. The performances are so powerful!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me at the edge of my seat. So intense and suspenseful!"
|
||||
},
|
||||
{
|
||||
"comment": "The storytelling in this episode is masterful. It's a captivating journey!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me in tears. It touched my heart in ways I didn't expect!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the characters in this episode is fire. I ship them so hard!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster ride. It had me gasping for breath!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is stunning. Each frame is like a painting!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a game-changer. It took the series to a whole new level!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this episode are outstanding. The actors brought so much depth!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me on the edge of my seat. I couldn't look away!"
|
||||
},
|
||||
{
|
||||
"comment": "The writing in this episode is exceptional. It's gripping and thought-provoking!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me in tears. It's an emotional rollercoaster!"
|
||||
},
|
||||
{
|
||||
"comment": "The tension in this episode is palpable. It kept me on the edge of my seat!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this episode and I'm in awe. It's a game-changer!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is breathtaking. Each shot is visually stunning!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me hooked from the start. Such a compelling story!"
|
||||
},
|
||||
{
|
||||
"comment": "The character development in this episode is remarkable. I love seeing their growth!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster of emotions. It made me laugh and cry!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot twists in this episode blew my mind. I didn't see them coming!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode left me speechless. It's a turning point in the series!"
|
||||
},
|
||||
{
|
||||
"comment": "The acting in this episode is outstanding. The performances are so powerful!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me on the edge of my seat. It's so suspenseful!"
|
||||
},
|
||||
{
|
||||
"comment": "The storytelling in this episode is brilliant. It kept me engaged throughout!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode touched my heart. It's emotional and impactful!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the characters in this episode is electric. Their interactions are captivating!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a rollercoaster ride. It had me on an emotional high!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this episode is stunning. Each shot is visually breathtaking!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode is a game-changer. It took the series to a whole new level!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this episode are outstanding. The actors delivered powerful portrayals!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me at the edge of my seat. I couldn't look away!"
|
||||
},
|
||||
{
|
||||
"comment": "The writing in this episode is exceptional. It's gripping and thought-provoking!"
|
||||
},
|
||||
{
|
||||
"comment": "This episode had me in tears. It's an emotional rollercoaster!"
|
||||
},
|
||||
{
|
||||
"comment": "The tension in this episode is palpable. It kept me on the edge of my seat!"
|
||||
}
|
||||
]
|
||||
356
app/Actions/Demo/demo-movie-comments.json
Executable file
356
app/Actions/Demo/demo-movie-comments.json
Executable file
@@ -0,0 +1,356 @@
|
||||
[
|
||||
{
|
||||
"comment": "OMG, this movie is mind-blowing! Couldn't take my eyes off the screen!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this film and it's a total rollercoaster ride. So intense!"
|
||||
},
|
||||
{
|
||||
"comment": "The visuals in this movie are insane. Such stunning cinematography!"
|
||||
},
|
||||
{
|
||||
"comment": "Lead actor in this one is straight-up killing it. Their performance was on point!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me on the edge of my seat the whole time. Non-stop excitement!"
|
||||
},
|
||||
{
|
||||
"comment": "The cast in this film is awesome. They brought so much energy to the story!"
|
||||
},
|
||||
{
|
||||
"comment": "Laughed my head off watching this comedy flick. It's hilarious from start to finish!"
|
||||
},
|
||||
{
|
||||
"comment": "Action scenes in this movie are epic. Heart-pounding and adrenaline-fueled!"
|
||||
},
|
||||
{
|
||||
"comment": "This film had me in tears one moment and then cheering like crazy. So many emotions!"
|
||||
},
|
||||
{
|
||||
"comment": "The soundtrack in this movie is fire. Can't get enough of those awesome tunes!"
|
||||
},
|
||||
{
|
||||
"comment": "Just saw this movie and it blew my mind! So much suspense and unexpected twists."
|
||||
},
|
||||
{
|
||||
"comment": "The setting in this film is breathtaking. It transports you to another world."
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the actors in this movie is off the charts. They were perfect together!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me hooked from the very beginning. Such an engaging storyline!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this film is on point. I was laughing throughout!"
|
||||
},
|
||||
{
|
||||
"comment": "The special effects in this movie are mind-blowing. So realistic and visually stunning!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this film are outstanding. The actors truly brought their characters to life."
|
||||
},
|
||||
{
|
||||
"comment": "I can't get over the incredible plot twists in this movie. Kept me guessing till the end!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie touched my heart. I felt all the emotions deeply."
|
||||
},
|
||||
{
|
||||
"comment": "The action sequences in this film are like nothing I've seen before. Jaw-dropping!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this movie and it exceeded all my expectations. Highly recommended!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this film is stunning. Every frame is a work of art."
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this movie blew me away. So raw and powerful!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie is a rollercoaster of emotions. Laughter, tears, and everything in between!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the lead actors is off the charts. Their on-screen presence is electrifying!"
|
||||
},
|
||||
{
|
||||
"comment": "Couldn't stop talking about this movie after watching it. It left a lasting impression!"
|
||||
},
|
||||
{
|
||||
"comment": "The dialogue in this film is so witty and clever. I was quoting lines for days!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me at the edge of my seat throughout. Suspenseful and thrilling!"
|
||||
},
|
||||
{
|
||||
"comment": "The soundtrack in this movie is pure perfection. It sets the mood so well!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this movie and I'm in awe. It's a masterpiece in every aspect!"
|
||||
},
|
||||
{
|
||||
"comment": "The storytelling in this film is top-notch. It captivated me from start to finish."
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this movie are Oscar-worthy. So much talent on screen!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie is a total crowd-pleaser. Everyone should watch it!"
|
||||
},
|
||||
{
|
||||
"comment": "The suspense in this film had me on the edge of my seat. Nerve-wracking and intense!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this movie is breathtaking. Each shot is visually stunning!"
|
||||
},
|
||||
{
|
||||
"comment": "The characters in this film are so relatable. I felt like I knew them personally."
|
||||
},
|
||||
{
|
||||
"comment": "This movie kept me guessing till the very end. So many unexpected twists!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this film are exceptional. I was completely immersed in the story."
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this movie and I'm speechless. It's a cinematic masterpiece!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this film had me laughing out loud. Pure comedic genius!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie is a visual feast. The production design is incredible!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the lead actors is undeniable. Their interactions are electric!"
|
||||
},
|
||||
{
|
||||
"comment": "Couldn't get enough of this movie. I wish it never ended!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this film is stunning. It captured the essence of the story perfectly."
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this movie are outstanding. Each actor brought something unique to their role."
|
||||
},
|
||||
{
|
||||
"comment": "This movie took me on an emotional rollercoaster. I laughed, I cried, and everything in between!"
|
||||
},
|
||||
{
|
||||
"comment": "The action sequences in this film are jaw-dropping. It's like an adrenaline rush!"
|
||||
},
|
||||
{
|
||||
"comment": "Just finished watching this movie and I'm blown away. It's a must-see!"
|
||||
},
|
||||
{
|
||||
"comment": "The visuals in this film are stunning. I was in awe of the breathtaking cinematography!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this movie are phenomenal. The actors gave it their all!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me hooked from the beginning till the end. Such a gripping storyline!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this film is spot on. I couldn't stop laughing!"
|
||||
},
|
||||
{
|
||||
"comment": "The special effects in this movie are mind-blowing. So realistic and visually stunning!"
|
||||
},
|
||||
{
|
||||
"comment": "The cast in this movie is fantastic. Each actor brought depth and charisma to their character."
|
||||
},
|
||||
{
|
||||
"comment": "This movie kept me on the edge of my seat. So many unexpected twists and turns!"
|
||||
},
|
||||
{
|
||||
"comment": "The emotions in this film hit me hard. I laughed, I cried, and I felt everything in between."
|
||||
},
|
||||
{
|
||||
"comment": "The action sequences in this movie are absolutely thrilling. It's a wild ride from start to finish!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this movie and it blew my mind! The story, the performances, everything was incredible."
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this film is breathtaking. Every shot is like a work of art!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this movie are outstanding. The actors brought so much depth to their characters!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me completely engrossed. I couldn't take my eyes off the screen!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this film is on point. I couldn't stop laughing!"
|
||||
},
|
||||
{
|
||||
"comment": "The special effects in this movie are mind-blowing. They added an extra layer of awesomeness!"
|
||||
},
|
||||
{
|
||||
"comment": "The cast in this movie is stellar. Each actor brought their A-game!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me guessing till the end. So many plot twists and surprises!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this film are outstanding. Each actor brought their character to life in a remarkable way."
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this movie and I'm in awe. It's a cinematic masterpiece!"
|
||||
},
|
||||
{
|
||||
"comment": "The comedy in this film had me laughing so hard. It's pure comedic gold!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie is visually stunning. The cinematography is breathtaking!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the actors in this film is electric. They had amazing on-screen dynamics!"
|
||||
},
|
||||
{
|
||||
"comment": "Couldn't stop thinking about this movie after watching it. It left a lasting impression!"
|
||||
},
|
||||
{
|
||||
"comment": "The dialogue in this film is so witty and clever. It had me laughing out loud!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me on the edge of my seat the whole time. Gripping and suspenseful!"
|
||||
},
|
||||
{
|
||||
"comment": "The soundtrack in this movie is perfect. It sets the mood and enhances every scene!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this movie and I'm blown away. It's a must-see!"
|
||||
},
|
||||
{
|
||||
"comment": "The storytelling in this film is captivating. It kept me engaged from start to finish."
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this movie are exceptional. Each actor delivered a powerful portrayal!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie is a crowd-pleaser. It has something for everyone!"
|
||||
},
|
||||
{
|
||||
"comment": "The suspense in this film had me on the edge of my seat. It kept me guessing till the end!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this movie is breathtaking. Each shot is visually stunning!"
|
||||
},
|
||||
{
|
||||
"comment": "The characters in this film are so relatable. I felt like I knew them personally."
|
||||
},
|
||||
{
|
||||
"comment": "This movie kept me on the edge of my seat. So many unexpected twists and turns!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this film are exceptional. I was completely immersed in the story."
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this movie and I'm speechless. It's a cinematic masterpiece!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this film had me laughing out loud. Pure comedic genius!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie is a visual feast. The production design is incredible!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the lead actors is undeniable. Their on-screen interactions are electric!"
|
||||
},
|
||||
{
|
||||
"comment": "Couldn't get enough of this movie. I wish it never ended!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this film is stunning. It captured the essence of the story perfectly."
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this movie are outstanding. Each actor brought something unique to their role."
|
||||
},
|
||||
{
|
||||
"comment": "This movie took me on an emotional rollercoaster. I laughed, I cried, and everything in between!"
|
||||
},
|
||||
{
|
||||
"comment": "The action sequences in this film are jaw-dropping. It's like an adrenaline rush!"
|
||||
},
|
||||
{
|
||||
"comment": "Just finished watching this movie and I'm blown away. It's a must-see!"
|
||||
},
|
||||
{
|
||||
"comment": "The visuals in this film are stunning. I was in awe of the breathtaking cinematography!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this movie are phenomenal. The actors gave it their all!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me hooked from the beginning till the end. Such a gripping storyline!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this film is spot on. I couldn't stop laughing!"
|
||||
},
|
||||
{
|
||||
"comment": "The special effects in this movie are mind-blowing. So realistic and visually stunning!"
|
||||
},
|
||||
{
|
||||
"comment": "The cast in this movie is fantastic. Each actor brought depth and charisma to their character."
|
||||
},
|
||||
{
|
||||
"comment": "This movie kept me guessing till the very end. So many unexpected twists!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this film are exceptional. I was completely immersed in the story."
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this movie and I'm in awe. It's a cinematic masterpiece!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this film is breathtaking. Every shot is like a work of art!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this movie are outstanding. Each actor brought so much depth to their characters!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me completely engrossed. I couldn't take my eyes off the screen!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this film is on point. I couldn't stop laughing!"
|
||||
},
|
||||
{
|
||||
"comment": "The special effects in this movie are mind-blowing. They added an extra layer of awesomeness!"
|
||||
},
|
||||
{
|
||||
"comment": "The cast in this movie is stellar. Each actor brought their A-game!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me guessing till the end. So many plot twists and surprises!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this film are outstanding. Each actor brought their character to life in a remarkable way."
|
||||
},
|
||||
{
|
||||
"comment": "Just watched this movie and I'm in awe. It's a cinematic masterpiece!"
|
||||
},
|
||||
{
|
||||
"comment": "The comedy in this film had me laughing so hard. It's pure comedic gold!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie is visually stunning. The cinematography is breathtaking!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the actors in this film is electric. They had amazing on-screen dynamics!"
|
||||
},
|
||||
{
|
||||
"comment": "Couldn't stop thinking about this movie after watching it. It left a lasting impression!"
|
||||
},
|
||||
{
|
||||
"comment": "The dialogue in this film is so witty and clever. It had me laughing out loud!"
|
||||
},
|
||||
{
|
||||
"comment": "This movie had me on the edge of my seat the whole time. Gripping and suspenseful!"
|
||||
},
|
||||
{
|
||||
"comment": "The soundtrack in this movie is perfect. It sets the mood and enhances every scene!"
|
||||
}
|
||||
]
|
||||
523
app/Actions/Demo/demo-movie-reviews.json
Executable file
523
app/Actions/Demo/demo-movie-reviews.json
Executable file
@@ -0,0 +1,523 @@
|
||||
[
|
||||
{
|
||||
"title": "A Must-Watch!",
|
||||
"body": "OMG, this movie is a total masterpiece! The storytelling, acting, and visuals are on another level. You gotta see it!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "So Thrilling and Action-Packed!",
|
||||
"body": "Hold onto your seats, folks! This movie is an adrenaline rush from start to finish. The action scenes will blow your mind!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Emotionally Powerful",
|
||||
"body": "Get ready to feel all the feels! This movie dives deep into emotions and hits you right in the heart. It's a tearjerker, but in a good way!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Laugh-Out-Loud Funny!",
|
||||
"body": "If you're in need of a good laugh, this movie is the perfect remedy! The jokes are hilarious, and the humor is off the charts!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Visually Jaw-Dropping",
|
||||
"body": "Prepare to have your mind blown by the stunning visuals in this movie! The cinematography and special effects are out of this world!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Keeps You Guessing!",
|
||||
"body": "Whoa, this movie is a wild ride! It's full of suspense, unexpected twists, and turns that will leave you guessing until the very end!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Heartwarming and Inspiring",
|
||||
"body": "This movie will warm your heart and give you all the feels! It's inspiring, uplifting, and leaves you with a big smile on your face!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Gets You Thinking",
|
||||
"body": "Get ready to have your mind blown! This movie tackles deep themes that make you question everything. It'll keep you pondering for days!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "A Thrill Ride to Remember",
|
||||
"body": "Buckle up, folks! This movie is a non-stop thrill ride that will have you at the edge of your seat, biting your nails, and craving for more!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Mind-Blowing Performances",
|
||||
"body": "The cast in this movie is absolutely incredible! They deliver mind-blowing performances that will leave you in awe. Kudos to the actors!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Disappointing and Underwhelming",
|
||||
"body": "I had high hopes for this movie, but it fell short. The plot was predictable, and the performances felt lackluster. Not worth the hype.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lacks Originality",
|
||||
"body": "Unfortunately, this movie felt like a rehash of familiar tropes. The story offered nothing new, and I found myself bored and unengaged.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "A Missed Opportunity",
|
||||
"body": "With such potential, this movie failed to deliver. The pacing was off, and the characters lacked depth. It's a forgettable experience.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Impressive Cinematic Experience",
|
||||
"body": "This movie is a visual feast for the eyes! The stunning cinematography and breathtaking set pieces create an immersive cinematic experience. Highly recommended!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Captivating Storyline",
|
||||
"body": "From beginning to end, this movie had me hooked with its compelling storyline. The twists and turns kept me engaged, eagerly waiting to see what happens next!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Powerful and Thought-Provoking",
|
||||
"body": "This movie tackles important themes and leaves a lasting impact. It makes you reflect on society and the human condition. Prepare for a thought-provoking journey!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Hilarious and Heartwarming",
|
||||
"body": "Laughter and warm fuzzies guaranteed! This movie strikes the perfect balance between comedy and heart, delivering memorable moments that will leave you smiling.",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Visually Stunning Masterpiece",
|
||||
"body": "This movie is a visual marvel. The attention to detail, breathtaking visuals, and stunning cinematography create a feast for the eyes. A true cinematic masterpiece!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Intriguing and Suspenseful",
|
||||
"body": "Prepare for a nail-biting experience! This movie keeps you on the edge of your seat with its gripping plot and suspenseful sequences. It will leave you guessing until the end!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Inspiring and Uplifting",
|
||||
"body": "This movie is a feel-good gem that leaves you with a renewed sense of inspiration and hope. It touches your heart and reminds you of the power of dreams!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Mind-Expanding Story",
|
||||
"body": "This movie expands your mind and challenges your perspective. It delves into deep concepts and takes you on a journey of self-discovery. Prepare to be amazed!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Action-Packed Thrills",
|
||||
"body": "Hold onto your popcorn! This movie delivers non-stop action and thrilling sequences that will leave you breathless. Get ready for an adrenaline-fueled joyride!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Incredible Performances",
|
||||
"body": "The performances in this movie are top-notch! The talented cast brings their characters to life, delivering powerful and nuanced portrayals. A true acting masterclass!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Execution",
|
||||
"body": "Despite promising elements, this movie fails to live up to expectations. The execution falls flat, leaving a sense of missed opportunities and unfulfilled potential.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lackluster Storytelling",
|
||||
"body": "The story in this movie lacks depth and fails to engage. It feels clichéd and fails to offer any surprises or compelling narrative arcs. Disappointing overall.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underdeveloped Characters",
|
||||
"body": "The characters in this movie lack depth and fail to leave a lasting impression. Their motivations and relationships feel superficial, leaving much to be desired.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Mediocre",
|
||||
"body": "While the story may have potential, the visual execution leaves much to be desired. The cinematography and special effects fail to impress, resulting in a lackluster experience.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Predictable and Formulaic",
|
||||
"body": "This movie follows a predictable formula, leaving little room for surprises. The plot unfolds exactly as expected, offering little excitement or suspense.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "A Forgettable Experience",
|
||||
"body": "Despite its promising premise, this movie fails to make a lasting impact. It lacks memorable moments and fails to leave a lasting impression. Easily forgettable.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Engaging and Enthralling",
|
||||
"body": "This movie grabs your attention from the very beginning and never lets go. The engaging storyline and captivating performances make it a must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Deeply Moving and Emotional",
|
||||
"body": "Be prepared for an emotional rollercoaster! This movie touches your heart and evokes a range of emotions. It's a powerful and moving cinematic experience!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "An Entertaining Delight",
|
||||
"body": "This movie is pure entertainment! It's a delightful escape from reality, filled with fun and excitement. Sit back, relax, and enjoy the ride!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Visually Mesmerizing",
|
||||
"body": "Prepare to be mesmerized by the stunning visuals in this movie. The breathtaking imagery and artistic cinematography create a feast for the eyes!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Suspenseful and Thrilling",
|
||||
"body": "This movie keeps you on the edge of your seat with its suspenseful plot and heart-pounding moments. It's a gripping thrill ride you won't forget!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "An Inspiring Journey",
|
||||
"body": "Get ready to be inspired! This movie takes you on a transformative journey, filled with life lessons, hope, and a renewed sense of purpose.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Intellectually Stimulating",
|
||||
"body": "This movie challenges your intellect and provokes thought. It raises important questions and offers unique perspectives. Prepare for a mentally engaging experience!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Action-Packed and Exciting",
|
||||
"body": "This movie is a thrilling adventure from start to finish. The action sequences are mind-blowing, and the excitement never lets up. Pure adrenaline rush!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Outstanding Performances",
|
||||
"body": "The actors in this movie deliver exceptional performances, bringing their characters to life with depth and authenticity. Truly remarkable!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Plot",
|
||||
"body": "Unfortunately, the plot of this movie fails to captivate. It lacks originality and fails to offer any compelling twists or turns. Disappointing overall.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lacks Substance",
|
||||
"body": "This movie may have flashy visuals, but it lacks substance. The story feels shallow and fails to resonate on a deeper level. A forgettable experience.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underwhelming Characters",
|
||||
"body": "The characters in this movie are one-dimensional and fail to leave a lasting impression. Their development is lacking, resulting in a lackluster experience.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Unremarkable",
|
||||
"body": "The visual presentation in this movie is unremarkable. It lacks creativity and fails to leave a lasting visual impact. A missed opportunity.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Formulaic and Predictable",
|
||||
"body": "This movie follows a familiar formula, leaving little room for surprises. The plot unfolds exactly as expected, resulting in a lack of excitement or intrigue.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "A Forgettable Journey",
|
||||
"body": "Despite its initial promise, this movie fails to leave a lasting impact. It lacks memorable moments and fails to make a lasting impression. Easily forgettable.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Compelling and Engrossing",
|
||||
"body": "This movie hooks you from the beginning and keeps you engaged throughout. The captivating story and stellar performances make it a must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "A Rollercoaster of Emotions",
|
||||
"body": "Get ready to laugh, cry, and everything in between! This movie tugs at your heartstrings and takes you on an emotional rollercoaster. Prepare for a truly moving experience!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Pure Fun and Entertainment",
|
||||
"body": "This movie is pure entertainment! It's a fun-filled adventure that will keep you entertained from start to finish. Sit back, relax, and enjoy the show!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "A Visual Masterpiece",
|
||||
"body": "Prepare to be visually amazed! This movie boasts breathtaking visuals, stunning cinematography, and a visual style that will leave you in awe.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Thrilling and Suspenseful",
|
||||
"body": "This movie will keep you on the edge of your seat with its thrilling plot and suspenseful twists. It's a gripping cinematic experience you won't want to miss!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "An Inspiring and Motivational Tale",
|
||||
"body": "This movie inspires you to chase your dreams and overcome obstacles. It's a motivational tale that leaves you feeling empowered and ready to take on the world!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Intellectually Engaging",
|
||||
"body": "Prepare to have your mind stimulated! This movie challenges your intellect with its thought-provoking concepts and complex narrative. A must-watch for thinkers!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Action-Packed and Thrilling",
|
||||
"body": "Hold onto your seats! This movie delivers high-octane action and thrilling sequences that will keep you on the edge of your seat. A pulse-pounding experience!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Exceptional Acting",
|
||||
"body": "The performances in this movie are truly remarkable. The cast delivers nuanced and powerful performances that elevate the storytelling. Bravo!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Execution",
|
||||
"body": "Despite its promising premise, this movie fails to deliver. The execution falls flat, leaving a sense of missed opportunities and unfulfilled potential.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lackluster Storytelling",
|
||||
"body": "The storytelling in this movie lacks depth and fails to engage. It feels clichéd and fails to offer any surprises or compelling narrative arcs. Disappointing overall.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underdeveloped Characters",
|
||||
"body": "The characters in this movie lack depth and fail to leave a lasting impression. Their motivations and relationships feel superficial, leaving much to be desired.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Mediocre",
|
||||
"body": "While the story may have potential, the visual execution leaves much to be desired. The cinematography and special effects fail to impress, resulting in a lackluster experience.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Predictable and Formulaic",
|
||||
"body": "This movie follows a predictable formula, leaving little room for surprises. The plot unfolds exactly as expected, offering little excitement or suspense.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "A Forgettable Experience",
|
||||
"body": "Despite its promising premise, this movie fails to make a lasting impact. It lacks memorable moments and fails to leave a lasting impression. Easily forgettable.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Engaging and Enthralling",
|
||||
"body": "This movie grabs your attention from the very beginning and never lets go. The engaging storyline and captivating performances make it a must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Deeply Moving and Emotional",
|
||||
"body": "Be prepared for an emotional rollercoaster! This movie touches your heart and evokes a range of emotions. It's a powerful and moving cinematic experience!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "An Entertaining Delight",
|
||||
"body": "This movie is pure entertainment! It's a delightful escape from reality, filled with fun and excitement. Sit back, relax, and enjoy the ride!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Visually Mesmerizing",
|
||||
"body": "Prepare to be mesmerized by the stunning visuals in this movie. The breathtaking imagery and artistic cinematography create a feast for the eyes!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Suspenseful and Thrilling",
|
||||
"body": "This movie keeps you on the edge of your seat with its suspenseful plot and heart-pounding moments. It's a gripping thrill ride you won't forget!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "An Inspiring Journey",
|
||||
"body": "Get ready to be inspired! This movie takes you on a transformative journey, filled with life lessons, hope, and a renewed sense of purpose.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Intellectually Stimulating",
|
||||
"body": "This movie challenges your intellect and provokes thought. It raises important questions and offers unique perspectives. Prepare for a mentally engaging experience!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Action-Packed and Exciting",
|
||||
"body": "This movie is a thrilling adventure from start to finish. The action sequences are mind-blowing, and the excitement never lets up. Pure adrenaline rush!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Outstanding Performances",
|
||||
"body": "The actors in this movie deliver exceptional performances, bringing their characters to life with depth and authenticity. Truly remarkable!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Plot",
|
||||
"body": "Unfortunately, the plot of this movie fails to captivate. It lacks originality and fails to offer any compelling twists or turns. Disappointing overall.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lacks Substance",
|
||||
"body": "This movie may have flashy visuals, but it lacks substance. The story feels shallow and fails to resonate on a deeper level. A forgettable experience.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underwhelming Characters",
|
||||
"body": "The characters in this movie are one-dimensional and fail to leave a lasting impression. Their development is lacking, resulting in a lackluster experience.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Unremarkable",
|
||||
"body": "The visual presentation in this movie is unremarkable. It lacks creativity and fails to leave a lasting visual impact. A missed opportunity.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Formulaic and Predictable",
|
||||
"body": "This movie follows a familiar formula, leaving little room for surprises. The plot unfolds exactly as expected, resulting in a lack of excitement or intrigue.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "A Forgettable Journey",
|
||||
"body": "Despite its initial promise, this movie fails to leave a lasting impact. It lacks memorable moments and fails to make a lasting impression. Easily forgettable.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Compelling and Engrossing",
|
||||
"body": "This movie hooks you from the beginning and keeps you engaged throughout. The captivating story and stellar performances make it a must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "A Rollercoaster of Emotions",
|
||||
"body": "Get ready to laugh, cry, and everything in between! This movie tugs at your heartstrings and takes you on an emotional rollercoaster. Prepare for a truly moving experience!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Pure Fun and Entertainment",
|
||||
"body": "This movie is pure entertainment! It's a fun-filled adventure that will keep you entertained from start to finish. Sit back, relax, and enjoy the show!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "A Visual Masterpiece",
|
||||
"body": "Prepare to be visually amazed! This movie boasts breathtaking visuals, stunning cinematography, and a visual style that will leave you in awe.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Thrilling and Suspenseful",
|
||||
"body": "This movie will keep you on the edge of your seat with its thrilling plot and suspenseful twists. It's a gripping cinematic experience you won't want to miss!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "An Inspiring and Motivational Tale",
|
||||
"body": "This movie inspires you to chase your dreams and overcome obstacles. It's a motivational tale that leaves you feeling empowered and ready to take on the world!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Intellectually Engaging",
|
||||
"body": "Prepare to have your mind stimulated! This movie challenges your intellect with its thought-provoking concepts and complex narrative. A must-watch for thinkers!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Action-Packed and Thrilling",
|
||||
"body": "Hold onto your seats! This movie delivers high-octane action and thrilling sequences that will keep you on the edge of your seat. A pulse-pounding experience!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Exceptional Acting",
|
||||
"body": "The performances in this movie are truly remarkable. The cast delivers nuanced and powerful performances that elevate the storytelling. Bravo!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Execution",
|
||||
"body": "Despite its promising premise, this movie fails to deliver. The execution falls flat, leaving a sense of missed opportunities and unfulfilled potential.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lackluster Storytelling",
|
||||
"body": "The storytelling in this movie lacks depth and fails to engage. It feels clichéd and fails to offer any surprises or compelling narrative arcs. Disappointing overall.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underdeveloped Characters",
|
||||
"body": "The characters in this movie lack depth and fail to leave a lasting impression. Their motivations and relationships feel superficial, leaving much to be desired.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Mediocre",
|
||||
"body": "While the story may have potential, the visual execution leaves much to be desired. The cinematography and special effects fail to impress, resulting in a lackluster experience.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Predictable and Formulaic",
|
||||
"body": "This movie follows a predictable formula, leaving little room for surprises. The plot unfolds exactly as expected, offering little excitement or suspense.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "A Forgettable Experience",
|
||||
"body": "Despite its promising premise, this movie fails to make a lasting impact. It lacks memorable moments and fails to leave a lasting impression. Easily forgettable.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Engaging and Enthralling",
|
||||
"body": "This movie grabs your attention from the very beginning and never lets go. The engaging storyline and captivating performances make it a must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Deeply Moving and Emotional",
|
||||
"body": "Be prepared for an emotional rollercoaster! This movie touches your heart and evokes a range of emotions. It's a powerful and moving cinematic experience!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "An Entertaining Delight",
|
||||
"body": "This movie is pure entertainment! It's a delightful escape from reality, filled with fun and excitement. Sit back, relax, and enjoy the ride!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Visually Mesmerizing",
|
||||
"body": "Prepare to be mesmerized by the stunning visuals in this movie. The breathtaking imagery and artistic cinematography create a feast for the eyes!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Suspenseful and Thrilling",
|
||||
"body": "This movie keeps you on the edge of your seat with its suspenseful plot and heart-pounding moments. It's a gripping thrill ride you won't forget!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "An Inspiring Journey",
|
||||
"body": "Get ready to be inspired! This movie takes you on a transformative journey, filled with life lessons, hope, and a renewed sense of purpose.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Intellectually Stimulating",
|
||||
"body": "This movie challenges your intellect and provokes thought. It raises important questions and offers unique perspectives. Prepare for a mentally engaging experience!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Action-Packed and Exciting",
|
||||
"body": "This movie is a thrilling adventure from start to finish. The action sequences are mind-blowing, and the excitement never lets up. Pure adrenaline rush!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Outstanding Performances",
|
||||
"body": "The actors in this movie deliver exceptional performances, bringing their characters to life with depth and authenticity. Truly remarkable!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Plot",
|
||||
"body": "Unfortunately, the plot of this movie fails to captivate. It lacks originality and fails to offer any compelling twists or turns. Disappointing overall.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lacks Substance",
|
||||
"body": "This movie may have flashy visuals, but it lacks substance. The story feels shallow and fails to resonate on a deeper level. A forgettable experience.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underwhelming Characters",
|
||||
"body": "The characters in this movie are one-dimensional and fail to leave a lasting impression. Their development is lacking, resulting in a lackluster experience.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Unremarkable",
|
||||
"body": "The visual presentation in this movie is unremarkable. It lacks creativity and fails to leave a lasting visual impact. A missed opportunity.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Formulaic and Predictable",
|
||||
"body": "This movie follows a familiar formula, leaving little room for surprises. The plot unfolds exactly as expected, resulting in a lack of excitement or intrigue.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "A Forgettable Journey",
|
||||
"body": "Despite its initial promise, this movie fails to leave a lasting impact. It lacks memorable moments and fails to make a lasting impression. Easily forgettable.",
|
||||
"score": 5
|
||||
}
|
||||
]
|
||||
|
||||
329
app/Actions/Demo/demo-series-comments.json
Executable file
329
app/Actions/Demo/demo-series-comments.json
Executable file
@@ -0,0 +1,329 @@
|
||||
[
|
||||
{
|
||||
"comment": "OMG, this series is mind-blowing! I can't stop watching!"
|
||||
},
|
||||
{
|
||||
"comment": "Just binge-watched this series and I'm hooked. It's so addictive!"
|
||||
},
|
||||
{
|
||||
"comment": "The storyline in this series is insane. So many twists and turns!"
|
||||
},
|
||||
{
|
||||
"comment": "The cast in this series is amazing. Each actor brings something unique!"
|
||||
},
|
||||
{
|
||||
"comment": "This series had me on the edge of my seat the whole time. So suspenseful!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the characters in this series is off the charts. Love it!"
|
||||
},
|
||||
{
|
||||
"comment": "Laughed my heart out watching this comedy series. It's hilarious!"
|
||||
},
|
||||
{
|
||||
"comment": "The drama in this series is so intense. It keeps me wanting more!"
|
||||
},
|
||||
{
|
||||
"comment": "Just finished the latest season of this series. Mind officially blown!"
|
||||
},
|
||||
{
|
||||
"comment": "The soundtrack in this series is fire. Can't get enough of it!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is binge-worthy. I can't stop clicking 'Next Episode'!"
|
||||
},
|
||||
{
|
||||
"comment": "The character development in this series is amazing. I feel so connected to them!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has me emotionally invested. I laugh, I cry, I feel it all!"
|
||||
},
|
||||
{
|
||||
"comment": "The cliffhangers in this series are killing me. I need to know what happens next!"
|
||||
},
|
||||
{
|
||||
"comment": "The acting in this series is top-notch. Such talent on display!"
|
||||
},
|
||||
{
|
||||
"comment": "This series keeps me guessing at every turn. Never a dull moment!"
|
||||
},
|
||||
{
|
||||
"comment": "The relationships in this series are so compelling. I'm rooting for them!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is pure entertainment. It's my guilty pleasure!"
|
||||
},
|
||||
{
|
||||
"comment": "The writing in this series is incredible. So many quotable lines!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has a unique concept. Refreshing and original!"
|
||||
},
|
||||
{
|
||||
"comment": "The suspense in this series is killing me. Can't wait for the next episode!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the cast members is amazing. They're like a family!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has a great mix of genres. There's something for everyone!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot twists in this series are mind-blowing. I never saw them coming!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this series are outstanding. Each actor shines!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is addictive. I'm obsessed with the characters and their stories!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this series is on point. I can't stop laughing!"
|
||||
},
|
||||
{
|
||||
"comment": "This series keeps me on the edge of my seat. So many unexpected surprises!"
|
||||
},
|
||||
{
|
||||
"comment": "The soundtrack in this series is a vibe. It sets the perfect mood!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is a rollercoaster of emotions. I'm hooked!"
|
||||
},
|
||||
{
|
||||
"comment": "The world-building in this series is impressive. So immersive!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has strong female characters. They're empowering and inspiring!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this series is stunning. Every shot is beautiful!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has incredible storytelling. I'm captivated!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this series are incredible. Each actor brings depth and nuance!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is an emotional rollercoaster. It tugs at my heartstrings!"
|
||||
},
|
||||
{
|
||||
"comment": "The suspense in this series is intense. I can't stop watching!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has a diverse and inclusive cast. Representation matters!"
|
||||
},
|
||||
{
|
||||
"comment": "The writing in this series is superb. It keeps me engaged!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is my latest obsession. I can't get enough of it!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the actors in this series is fire. They have amazing on-screen dynamics!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is a rollercoaster ride of emotions. It takes me on a journey!"
|
||||
},
|
||||
{
|
||||
"comment": "The world-building in this series is phenomenal. It feels so real!"
|
||||
},
|
||||
{
|
||||
"comment": "This series tackles important social issues. It's thought-provoking!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this series is stunning. Each frame is visually captivating!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has a strong ensemble cast. Each actor brings something special!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot twists in this series keep me on my toes. Never a dull moment!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has me emotionally invested. I feel like I'm part of their world!"
|
||||
},
|
||||
{
|
||||
"comment": "The character dynamics in this series are so well-developed. I love their interactions!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has so many memorable moments. It leaves a lasting impression!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this series are exceptional. Each actor brings depth to their character!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is addictive. I can't stop watching episode after episode!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this series is hilarious. It never fails to make me laugh!"
|
||||
},
|
||||
{
|
||||
"comment": "This series keeps me on the edge of my seat. It's a wild ride!"
|
||||
},
|
||||
{
|
||||
"comment": "The soundtrack in this series is incredible. It enhances the storytelling!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is an emotional rollercoaster. It makes me laugh and cry!"
|
||||
},
|
||||
{
|
||||
"comment": "The attention to detail in this series is impressive. It's a visual feast!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has a diverse cast with amazing performances. It's inclusive and representative!"
|
||||
},
|
||||
{
|
||||
"comment": "The writing in this series is brilliant. The dialogue is sharp and engaging!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has become my new obsession. I can't get enough of it!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the actors in this series is electric. Their performances are captivating!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is a whirlwind of emotions. It has me invested in every character!"
|
||||
},
|
||||
{
|
||||
"comment": "The world-building in this series is rich and immersive. It feels like a whole new universe!"
|
||||
},
|
||||
{
|
||||
"comment": "This series tackles relevant and timely themes. It's thought-provoking and impactful!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this series is stunning. It adds another layer of beauty to the storytelling!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has an incredible ensemble cast. The chemistry between the actors is incredible!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot twists in this series are mind-bending. It keeps me guessing all the time!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has a strong emotional core. It touches my heart and leaves a lasting impact!"
|
||||
},
|
||||
{
|
||||
"comment": "The character development in this series is exceptional. I love seeing their growth!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is so addictive. I can't stop watching. It's my latest obsession!"
|
||||
},
|
||||
{
|
||||
"comment": "The humor in this series is top-notch. It's a perfect balance of comedy and heart!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is full of surprises. It keeps me guessing and on the edge of my seat!"
|
||||
},
|
||||
{
|
||||
"comment": "The soundtrack in this series is phenomenal. It adds so much to the atmosphere!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is an emotional rollercoaster. It takes me through highs and lows!"
|
||||
},
|
||||
{
|
||||
"comment": "The attention to detail in this series is incredible. The production value is top-notch!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has a diverse cast that brings authenticity and representation. It's amazing!"
|
||||
},
|
||||
{
|
||||
"comment": "The writing in this series is exceptional. It keeps me engaged and invested in the story!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has become my new addiction. I can't get enough of it!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the actors in this series is off the charts. They have incredible synergy!"
|
||||
},
|
||||
{
|
||||
"comment": "This series is an emotional rollercoaster. It makes me feel all the feels!"
|
||||
},
|
||||
{
|
||||
"comment": "The world-building in this series is immersive and captivating. It feels like a whole new reality!"
|
||||
},
|
||||
{
|
||||
"comment": "This series tackles important issues with sensitivity and depth. It's thought-provoking!"
|
||||
},
|
||||
{
|
||||
"comment": "The cinematography in this series is stunning. It's visually breathtaking!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has an amazing ensemble cast. Each actor brings their A-game!"
|
||||
},
|
||||
{
|
||||
"comment": "The plot twists in this series are mind-blowing. It keeps me on the edge of my seat!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has characters I can't help but root for. I'm emotionally invested!"
|
||||
},
|
||||
{
|
||||
"comment": "The character dynamics in this series are so well-written. The relationships feel real!"
|
||||
},
|
||||
{
|
||||
"comment": "This series has so many unforgettable moments. It leaves a lasting impact!"
|
||||
},
|
||||
{
|
||||
"comment": "The performances in this series are outstanding. Each actor brings depth to their role!"
|
||||
},
|
||||
{
|
||||
"comment": "Just watched the latest episode of this series and it's mind-blowing! Can't wait for more!"
|
||||
},
|
||||
{
|
||||
"comment": "This series keeps getting better and better with each episode. I'm hooked!"
|
||||
},
|
||||
{
|
||||
"comment": "The latest episode of this series left me speechless. It's a game-changer!"
|
||||
},
|
||||
{
|
||||
"comment": "The character development in this series is outstanding. I love seeing them grow!"
|
||||
},
|
||||
{
|
||||
"comment": "The latest episode of this series had me on the edge of my seat. So thrilling!"
|
||||
},
|
||||
{
|
||||
"comment": "I just can't get enough of this series. Each episode leaves me wanting more!"
|
||||
},
|
||||
{
|
||||
"comment": "The latest episode of this series had me laughing out loud. It's so funny!"
|
||||
},
|
||||
{
|
||||
"comment": "This series knows how to keep me invested. The latest episode was so captivating!"
|
||||
},
|
||||
{
|
||||
"comment": "The latest episode of this series had so many unexpected twists. It's unpredictable!"
|
||||
},
|
||||
{
|
||||
"comment": "I'm completely obsessed with this series. The latest episode blew my mind!"
|
||||
},
|
||||
{
|
||||
"comment": "The latest episode of this series is visually stunning. The production value is incredible!"
|
||||
},
|
||||
{
|
||||
"comment": "This series just keeps raising the bar. The latest episode was exceptional!"
|
||||
},
|
||||
{
|
||||
"comment": "The chemistry between the characters in this series is off the charts. I love their dynamics!"
|
||||
},
|
||||
{
|
||||
"comment": "The latest episode of this series tugged at my heartstrings. It's so emotional!"
|
||||
},
|
||||
{
|
||||
"comment": "I'm always left wanting more after each episode of this series. It's addictive!"
|
||||
},
|
||||
{
|
||||
"comment": "The latest episode of this series had me at the edge of my seat. So intense!"
|
||||
},
|
||||
{
|
||||
"comment": "This series continues to surprise me. The latest episode had an unexpected twist!"
|
||||
},
|
||||
{
|
||||
"comment": "The latest episode of this series had me completely hooked. It's so well-written!"
|
||||
},
|
||||
{
|
||||
"comment": "I just can't get enough of this series. The latest episode was phenomenal!"
|
||||
},
|
||||
{
|
||||
"comment": "The latest episode of this series had me on an emotional rollercoaster. It's powerful!"
|
||||
}
|
||||
]
|
||||
507
app/Actions/Demo/demo-series-reviews.json
Executable file
507
app/Actions/Demo/demo-series-reviews.json
Executable file
@@ -0,0 +1,507 @@
|
||||
[
|
||||
{
|
||||
"title": "Binge-Worthy Series!",
|
||||
"body": "I couldn't stop watching this series! Each episode left me wanting more. The storyline and characters are captivating. Highly recommended!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Addictive and Engaging",
|
||||
"body": "This series had me hooked from the very first episode. The plot twists and character development kept me invested throughout. Can't wait for the next season!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Emotional Rollercoaster",
|
||||
"body": "This series took me on an emotional journey. I laughed, I cried, and I felt deeply connected to the characters. It's a must-watch!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Hilarious and Heartwarming",
|
||||
"body": "I couldn't stop laughing while watching this series. The humor is spot-on, and the heartwarming moments tug at your heartstrings. A perfect balance!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Intriguing and Mysterious",
|
||||
"body": "This series kept me guessing until the very end. The mystery and suspense had me on the edge of my seat. A thrilling ride!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Well-Written and Gripping",
|
||||
"body": "The writing in this series is exceptional. The dialogue is sharp, and the storylines are compelling. It's a masterclass in storytelling!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Powerful and Thought-Provoking",
|
||||
"body": "This series tackles important social issues and provokes thought. It sheds light on topics that need to be discussed. A truly impactful watch!",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Addictive Plot Twists",
|
||||
"body": "Just when I thought I had it figured out, this series hit me with unexpected plot twists. It kept me engaged and eagerly anticipating the next episode!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Relatable and Authentic",
|
||||
"body": "The characters in this series feel like real people. I could relate to their struggles and victories. It's a genuine and authentic portrayal!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Mind-Blowing Performances",
|
||||
"body": "The cast in this series delivers outstanding performances. Their talent and chemistry bring the characters to life. Bravo!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Lacks Substance",
|
||||
"body": "Unfortunately, this series lacks depth. The characters are underdeveloped, and the plot feels weak. It didn't leave a lasting impression.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Execution",
|
||||
"body": "I had high expectations for this series, but it fell short. The pacing was off, and the storytelling felt disjointed. A missed opportunity.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Unengaging Storylines",
|
||||
"body": "The series failed to captivate me. The storylines felt uninteresting, and the episodes dragged on. It didn't hold my attention.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Lackluster Character Development",
|
||||
"body": "The characters in this series lacked depth and growth. Their arcs felt stagnant, and I struggled to connect with them.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Visually Stunning",
|
||||
"body": "This series is a visual treat. The cinematography and production design are top-notch. It's a feast for the eyes!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Addictive and Suspenseful",
|
||||
"body": "I couldn't stop watching this series. Each episode ended with a cliffhanger that left me eagerly waiting for the next. So suspenseful!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Heartwarming and Inspiring",
|
||||
"body": "This series touched my heart. It's uplifting, inspiring, and reminds us of the power of friendship and resilience. A feel-good watch!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Thought-Provoking and Mind-Bending",
|
||||
"body": "This series messes with your mind in the best way possible. It raises intriguing questions and challenges your perception of reality.",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "A Rollercoaster of Emotions",
|
||||
"body": "This series had me laughing one moment and in tears the next. It's an emotional rollercoaster that leaves a lasting impact.",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Captivating Ensemble Cast",
|
||||
"body": "The chemistry among the cast members is electric. They bring the characters to life with such authenticity and make the series truly engaging.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Plot Twists",
|
||||
"body": "The series relied too heavily on predictable plot twists. It left me underwhelmed and craving for more surprising twists and turns.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lacks Coherence",
|
||||
"body": "The series felt disjointed and lacked a cohesive narrative. The storylines didn't seamlessly come together, leaving me confused.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underdeveloped Supporting Characters",
|
||||
"body": "While the main characters shined, the supporting cast felt underutilized. Their arcs were shallow and left much to be desired.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Underwhelming",
|
||||
"body": "The series didn't make good use of its visual potential. The cinematography and production design felt lackluster and uninspired.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Predictable Storylines",
|
||||
"body": "The series followed familiar tropes and lacked originality. The storylines unfolded exactly as expected, offering little surprises.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "A Forgettable Experience",
|
||||
"body": "Despite its initial promise, this series failed to make a lasting impression. It lacked memorable moments and failed to leave a lasting impact.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Compelling and Addictive",
|
||||
"body": "This series had me hooked from the first episode. The characters and their complex relationships kept me invested throughout. A must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Gripping and Intense",
|
||||
"body": "The series is a thrilling ride from start to finish. The suspense and tension never let up. I couldn't look away!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Relatable and Authentic",
|
||||
"body": "The characters in this series feel like real people. I could relate to their struggles and triumphs. It's a genuine and authentic portrayal!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Brilliant Ensemble Cast",
|
||||
"body": "The cast in this series is phenomenal. Each actor brings their A-game, creating a dynamic and captivating ensemble. Brilliant performances!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Underwhelming Plot",
|
||||
"body": "The series failed to deliver an engaging and cohesive storyline. The plot felt disjointed and left me wanting more depth.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Slow-Paced and Boring",
|
||||
"body": "The series lacked excitement and dragged on. The slow pace made it difficult to stay engaged. It didn't hold my interest.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Weak Supporting Characters",
|
||||
"body": "While the main characters were well-developed, the supporting cast felt underdeveloped and served little purpose in the series.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Average",
|
||||
"body": "The series didn't stand out visually. The cinematography and production design were mediocre, lacking creativity and flair.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lack of Originality",
|
||||
"body": "The series felt derivative and failed to bring anything new to the table. It lacked fresh ideas and original storytelling.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Easily Forgettable",
|
||||
"body": "Despite its initial intrigue, this series didn't leave a lasting impact. It lacked memorable moments and failed to make a lasting impression.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Compelling and Captivating",
|
||||
"body": "This series had me hooked from the first episode. The intricate plot and complex characters kept me on the edge of my seat. A must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Thrilling and Heart-Pounding",
|
||||
"body": "This series had me on the edge of my seat. The suspense and intense moments kept me glued to the screen. So exhilarating!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Authentic Character Development",
|
||||
"body": "The series beautifully portrayed the growth and development of its characters. I felt invested in their journeys. Truly compelling!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Ensemble Cast Chemistry",
|
||||
"body": "The chemistry among the cast members is electric. Their interactions and dynamics add depth and richness to the series. Fantastic ensemble!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Weak Plot Progression",
|
||||
"body": "The series struggled with pacing and failed to progress the plot effectively. It felt stagnant and lacked momentum.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lacks Excitement",
|
||||
"body": "The series failed to deliver thrilling moments or exciting plot developments. It left me wanting more action and intensity.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underutilized Supporting Characters",
|
||||
"body": "While the main characters shined, the supporting cast felt underused and lacked substantial storylines. Their potential wasn't fully explored.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Unimpressive",
|
||||
"body": "The series didn't utilize its visual elements to their full potential. The cinematography and production design were uninspiring.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Unoriginal Storylines",
|
||||
"body": "The series relied on familiar tropes and predictable plotlines. It lacked innovation and failed to offer any surprises.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Easily Forgettable",
|
||||
"body": "Despite its initial promise, this series didn't leave a lasting impression. It lacked memorable moments and failed to make a lasting impact.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Engrossing and Addictive",
|
||||
"body": "This series had me captivated from the first episode. The storytelling and character arcs kept me invested throughout. A must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Nail-Biting and Suspenseful",
|
||||
"body": "The series had me on the edge of my seat. The suspense and tension were palpable. I couldn't look away!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Well-Developed Characters",
|
||||
"body": "The series excelled in character development. Each character had depth and their own compelling storylines. Truly engaging!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Chemistry-Driven Ensemble",
|
||||
"body": "The cast's chemistry is electric. Their interactions and relationships bring an extra layer of authenticity to the series. Outstanding ensemble!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Weak Plot Twists",
|
||||
"body": "The series failed to deliver impactful plot twists. The twists felt predictable and lacked the wow factor. Disappointing.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lacks Momentum",
|
||||
"body": "The series struggled to maintain momentum. It felt slow and didn't build enough excitement or suspense.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underdeveloped Supporting Cast",
|
||||
"body": "While the main characters shined, the supporting cast felt underutilized and lacked meaningful character arcs. A missed opportunity.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Unremarkable",
|
||||
"body": "The series didn't stand out visually. The cinematography and production design were average, lacking innovation and creativity.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Predictable and Clichéd",
|
||||
"body": "The series followed predictable storylines and clichéd tropes. It failed to bring anything fresh or original to the table.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Easily Forgettable",
|
||||
"body": "Despite its initial intrigue, this series didn't leave a lasting impact. It lacked memorable moments and failed to make a lasting impression.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Compelling and Addictive",
|
||||
"body": "This series had me hooked from the first episode. The intricate plot and complex characters kept me on the edge of my seat. A must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Thrilling and Heart-Pounding",
|
||||
"body": "This series had me on the edge of my seat. The suspense and intense moments kept me glued to the screen. So exhilarating!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Authentic Character Development",
|
||||
"body": "The series beautifully portrayed the growth and development of its characters. I felt invested in their journeys. Truly compelling!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Ensemble Cast Chemistry",
|
||||
"body": "The chemistry among the cast members is electric. Their interactions and dynamics add depth and richness to the series. Fantastic ensemble!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Weak Plot Progression",
|
||||
"body": "The series struggled with pacing and failed to progress the plot effectively. It felt stagnant and lacked momentum.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lacks Excitement",
|
||||
"body": "The series failed to deliver thrilling moments or exciting plot developments. It left me wanting more action and intensity.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underutilized Supporting Characters",
|
||||
"body": "While the main characters shined, the supporting cast felt underused and lacked substantial storylines. Their potential wasn't fully explored.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Unimpressive",
|
||||
"body": "The series didn't utilize its visual elements to their full potential. The cinematography and production design were uninspiring.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Unoriginal Storylines",
|
||||
"body": "The series relied on familiar tropes and predictable plotlines. It lacked innovation and failed to offer any surprises.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Easily Forgettable",
|
||||
"body": "Despite its initial promise, this series didn't leave a lasting impression. It lacked memorable moments and failed to make a lasting impact.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Compelling and Captivating",
|
||||
"body": "This series had me hooked from the first episode. The intricate plot and complex characters kept me on the edge of my seat. A must-watch!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Thrilling and Suspenseful",
|
||||
"body": "This series kept me on the edge of my seat. The suspense and tension were palpable. I couldn't look away!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Engaging Character Dynamics",
|
||||
"body": "The series excelled in showcasing the relationships and dynamics between the characters. Their interactions were captivating.",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Impressive Ensemble Cast",
|
||||
"body": "The cast delivered outstanding performances, bringing depth and authenticity to their characters. A stellar ensemble!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Weak Plot Development",
|
||||
"body": "The series struggled to develop its plot effectively. The storylines felt disjointed and lacked coherence.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lackluster Excitement",
|
||||
"body": "The series failed to deliver excitement or thrilling moments. It lacked the necessary suspense and intensity.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underdeveloped Supporting Cast",
|
||||
"body": "While the main characters were well-developed, the supporting cast felt underutilized and lacked substantial storylines.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Mediocre",
|
||||
"body": "The series didn't stand out visually. The cinematography and production design felt average and uninspired.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Predictable and Stale",
|
||||
"body": "The series followed predictable storylines and failed to offer any surprises. It lacked freshness and originality.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Easily Forgettable",
|
||||
"body": "Despite its initial intrigue, this series didn't leave a lasting impact. It lacked memorable moments and failed to make a lasting impression.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Addictive and Riveting",
|
||||
"body": "This series had me hooked from the first episode. The intriguing storyline and compelling characters kept me engaged throughout. Can't wait for the next season!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Heartwarming and Uplifting",
|
||||
"body": "The series touched my heart and left me feeling inspired. It's a beautiful portrayal of hope, love, and resilience. Highly recommended!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Laugh-Out-Loud Funny",
|
||||
"body": "This series had me in stitches from start to finish. The humor is clever and the comedic timing is spot-on. A perfect comedy series!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Mind-Blowing Plot Twists",
|
||||
"body": "Just when I thought I had it all figured out, this series delivered mind-blowing plot twists that left me in awe. It kept me guessing until the very end!",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Engaging and Addictive",
|
||||
"body": "This series grabbed my attention and didn't let go. The fast-paced storytelling and gripping cliffhangers kept me eagerly anticipating the next episode.",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Thought-Provoking and Intelligent",
|
||||
"body": "The series tackles complex themes and presents them with depth and intelligence. It sparks meaningful discussions and leaves a lasting impact.",
|
||||
"score": 7
|
||||
},
|
||||
{
|
||||
"title": "Unexpected and Surprising",
|
||||
"body": "This series kept me on my toes with its unexpected plot developments and surprising character arcs. It defied my expectations in the best way!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Gripping and Suspenseful",
|
||||
"body": "The series had me on the edge of my seat. The tension and suspense were palpable, making it a thrilling and nail-biting experience.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Immersive and Captivating",
|
||||
"body": "This series transported me to another world. The immersive storytelling and rich world-building kept me fully engaged. A must-watch for fantasy fans!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Powerful and Impactful",
|
||||
"body": "This series packs an emotional punch. It explores important themes with depth and authenticity, leaving a lasting impact on the viewer.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Addictive and Thrilling",
|
||||
"body": "I couldn't stop watching this series. Each episode ended with a cliffhanger that left me craving for more. It's a pulse-pounding thrill ride!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Compelling Character Dynamics",
|
||||
"body": "The relationships between the characters are the heart of this series. The chemistry and complexity make it a truly engaging watch.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Plot Development",
|
||||
"body": "The series failed to progress the plot effectively. It felt slow and lacked the necessary momentum to keep me fully invested.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Underwhelming and Lackluster",
|
||||
"body": "This series didn't live up to the hype. It lacked excitement and failed to deliver on its promising premise. Disappointing overall.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Weak Characterization",
|
||||
"body": "The characters in this series felt one-dimensional and lacked depth. Their arcs and motivations were underdeveloped and left me wanting more.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Stunning",
|
||||
"body": "The series is a visual feast for the eyes. The stunning cinematography and production design create a mesmerizing and immersive experience.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Emotionally Charged",
|
||||
"body": "This series tugged at my heartstrings. The emotional depth and raw performances left me in tears. A deeply moving experience!",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Smart and Mind-Bending",
|
||||
"body": "The series challenges your perception and keeps you guessing. It's a smartly crafted and mind-bending journey that will leave you in awe.",
|
||||
"score": 9
|
||||
},
|
||||
{
|
||||
"title": "Heartfelt and Genuine",
|
||||
"body": "This series touched my heart with its authenticity and heartfelt storytelling. It's a genuine portrayal of human emotions and relationships.",
|
||||
"score": 8
|
||||
},
|
||||
{
|
||||
"title": "Disappointing Plot Twists",
|
||||
"body": "The series relied on predictable and uninspired plot twists. It failed to surprise or engage me. The twists felt forced and lacking impact.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Lacks Momentum and Pacing",
|
||||
"body": "The series struggled with pacing issues and lacked the necessary momentum to keep me fully engaged. It felt slow and dragged on at times.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Underdeveloped Supporting Characters",
|
||||
"body": "While the main characters shined, the supporting cast felt underutilized and lacked substantial storylines. Their potential wasn't fully realized.",
|
||||
"score": 5
|
||||
},
|
||||
{
|
||||
"title": "Visually Mediocre",
|
||||
"body": "The series didn't impress visually. The cinematography and production design felt average and didn't leave a lasting impact.",
|
||||
"score": 4
|
||||
},
|
||||
{
|
||||
"title": "Predictable and Formulaic",
|
||||
"body": "The series followed a predictable formula, leaving little room for surprises. It felt formulaic and failed to offer originality.",
|
||||
"score": 3
|
||||
},
|
||||
{
|
||||
"title": "Easily Forgettable",
|
||||
"body": "Despite its initial intrigue, this series failed to leave a lasting impression. It lacked memorable moments and failed to make a lasting impact.",
|
||||
"score": 5
|
||||
}
|
||||
]
|
||||
686
app/Actions/Demo/demo-users.json
Executable file
686
app/Actions/Demo/demo-users.json
Executable file
@@ -0,0 +1,686 @@
|
||||
[
|
||||
{
|
||||
"email": "john.doe@example.com",
|
||||
"first_name": "John",
|
||||
"last_name": "Doe",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "jane.smith@example.com",
|
||||
"first_name": "Jane",
|
||||
"last_name": "Smith",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "michael.johnson@example.com",
|
||||
"first_name": "Michael",
|
||||
"last_name": "Johnson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "emily.williams@example.com",
|
||||
"first_name": "Emily",
|
||||
"last_name": "Williams",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "william.brown@example.com",
|
||||
"first_name": "William",
|
||||
"last_name": "Brown",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "sophia.jones@example.com",
|
||||
"first_name": "Sophia",
|
||||
"last_name": "Jones",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "jackson.taylor@example.com",
|
||||
"first_name": "Jackson",
|
||||
"last_name": "Taylor",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "olivia.anderson@example.com",
|
||||
"first_name": "Olivia",
|
||||
"last_name": "Anderson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "matthew.johnson@example.com",
|
||||
"first_name": "Matthew",
|
||||
"last_name": "Johnson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "emma.martin@example.com",
|
||||
"first_name": "Emma",
|
||||
"last_name": "Martin",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "liam.thompson@example.com",
|
||||
"first_name": "Liam",
|
||||
"last_name": "Thompson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "ava.hernandez@example.com",
|
||||
"first_name": "Ava",
|
||||
"last_name": "Hernandez",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "noah.white@example.com",
|
||||
"first_name": "Noah",
|
||||
"last_name": "White",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "isabella.moore@example.com",
|
||||
"first_name": "Isabella",
|
||||
"last_name": "Moore",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "ethan.martin@example.com",
|
||||
"first_name": "Ethan",
|
||||
"last_name": "Martin",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "mia.lewis@example.com",
|
||||
"first_name": "Mia",
|
||||
"last_name": "Lewis",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "mason.hill@example.com",
|
||||
"first_name": "Mason",
|
||||
"last_name": "Hill",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "amelia.wilson@example.com",
|
||||
"first_name": "Amelia",
|
||||
"last_name": "Wilson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "logan.clark@example.com",
|
||||
"first_name": "Logan",
|
||||
"last_name": "Clark",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "harper.robinson@example.com",
|
||||
"first_name": "Harper",
|
||||
"last_name": "Robinson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "oliver.walker@example.com",
|
||||
"first_name": "Oliver",
|
||||
"last_name": "Walker",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "evelyn.cooper@example.com",
|
||||
"first_name": "Evelyn",
|
||||
"last_name": "Cooper",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "lucas.peterson@example.com",
|
||||
"first_name": "Lucas",
|
||||
"last_name": "Peterson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "abigail.kelly@example.com",
|
||||
"first_name": "Abigail",
|
||||
"last_name": "Kelly",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "aiden.richardson@example.com",
|
||||
"first_name": "Aiden",
|
||||
"last_name": "Richardson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "elizabeth.cook@example.com",
|
||||
"first_name": "Elizabeth",
|
||||
"last_name": "Cook",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "michael.ross@example.com",
|
||||
"first_name": "Michael",
|
||||
"last_name": "Ross",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "sofia.bennett@example.com",
|
||||
"first_name": "Sofia",
|
||||
"last_name": "Bennett",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "alexander.brooks@example.com",
|
||||
"first_name": "Alexander",
|
||||
"last_name": "Brooks",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "charlotte.bell@example.com",
|
||||
"first_name": "Charlotte",
|
||||
"last_name": "Bell",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "ethan.hall@example.com",
|
||||
"first_name": "Ethan",
|
||||
"last_name": "Hall",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "grace.perez@example.com",
|
||||
"first_name": "Grace",
|
||||
"last_name": "Perez",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "daniel.baker@example.com",
|
||||
"first_name": "Daniel",
|
||||
"last_name": "Baker",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "hannah.bailey@example.com",
|
||||
"first_name": "Hannah",
|
||||
"last_name": "Bailey",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "matthew.rogers@example.com",
|
||||
"first_name": "Matthew",
|
||||
"last_name": "Rogers",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "ella.gomez@example.com",
|
||||
"first_name": "Ella",
|
||||
"last_name": "Gomez",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "joseph.morris@example.com",
|
||||
"first_name": "Joseph",
|
||||
"last_name": "Morris",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "chloe.bailey@example.com",
|
||||
"first_name": "Chloe",
|
||||
"last_name": "Bailey",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "william.sanchez@example.com",
|
||||
"first_name": "William",
|
||||
"last_name": "Sanchez",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "zoey.harris@example.com",
|
||||
"first_name": "Zoey",
|
||||
"last_name": "Harris",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "christopher.foster@example.com",
|
||||
"first_name": "Christopher",
|
||||
"last_name": "Foster",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "aubrey.patterson@example.com",
|
||||
"first_name": "Aubrey",
|
||||
"last_name": "Patterson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "ryan.bell@example.com",
|
||||
"first_name": "Ryan",
|
||||
"last_name": "Bell",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "avery.sullivan@example.com",
|
||||
"first_name": "Avery",
|
||||
"last_name": "Sullivan",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "noah.washington@example.com",
|
||||
"first_name": "Noah",
|
||||
"last_name": "Washington",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "addison.roberts@example.com",
|
||||
"first_name": "Addison",
|
||||
"last_name": "Roberts",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "david.hughes@example.com",
|
||||
"first_name": "David",
|
||||
"last_name": "Hughes",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "madison.murphy@example.com",
|
||||
"first_name": "Madison",
|
||||
"last_name": "Murphy",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "jacob.edwards@example.com",
|
||||
"first_name": "Jacob",
|
||||
"last_name": "Edwards",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "scarlett.watson@example.com",
|
||||
"first_name": "Scarlett",
|
||||
"last_name": "Watson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "michael.russell@example.com",
|
||||
"first_name": "Michael",
|
||||
"last_name": "Russell",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "grace.hill@example.com",
|
||||
"first_name": "Grace",
|
||||
"last_name": "Hill",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "logan.mitchell@example.com",
|
||||
"first_name": "Logan",
|
||||
"last_name": "Mitchell",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "sophia.myers@example.com",
|
||||
"first_name": "Sophia",
|
||||
"last_name": "Myers",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "john.richardson@example.com",
|
||||
"first_name": "John",
|
||||
"last_name": "Richardson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "abigail.wilson@example.com",
|
||||
"first_name": "Abigail",
|
||||
"last_name": "Wilson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "william.sanders@example.com",
|
||||
"first_name": "William",
|
||||
"last_name": "Sanders",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "lily.howard@example.com",
|
||||
"first_name": "Lily",
|
||||
"last_name": "Howard",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "james.hall@example.com",
|
||||
"first_name": "James",
|
||||
"last_name": "Hall",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "sophia.gonzalez@example.com",
|
||||
"first_name": "Sophia",
|
||||
"last_name": "Gonzalez",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "joseph.russell@example.com",
|
||||
"first_name": "Joseph",
|
||||
"last_name": "Russell",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "mia.allen@example.com",
|
||||
"first_name": "Mia",
|
||||
"last_name": "Allen",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "alexander.peterson@example.com",
|
||||
"first_name": "Alexander",
|
||||
"last_name": "Peterson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "emily.brooks@example.com",
|
||||
"first_name": "Emily",
|
||||
"last_name": "Brooks",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "daniel.stewart@example.com",
|
||||
"first_name": "Daniel",
|
||||
"last_name": "Stewart",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "chloe.bennett@example.com",
|
||||
"first_name": "Chloe",
|
||||
"last_name": "Bennett",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "lucas.rogers@example.com",
|
||||
"first_name": "Lucas",
|
||||
"last_name": "Rogers",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "ava.watson@example.com",
|
||||
"first_name": "Ava",
|
||||
"last_name": "Watson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "mason.howard@example.com",
|
||||
"first_name": "Mason",
|
||||
"last_name": "Howard",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "zoey.gonzalez@example.com",
|
||||
"first_name": "Zoey",
|
||||
"last_name": "Gonzalez",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "andrew.wood@example.com",
|
||||
"first_name": "Andrew",
|
||||
"last_name": "Wood",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "grace.patterson@example.com",
|
||||
"first_name": "Grace",
|
||||
"last_name": "Patterson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "william.perez@example.com",
|
||||
"first_name": "William",
|
||||
"last_name": "Perez",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "scarlett.bailey@example.com",
|
||||
"first_name": "Scarlett",
|
||||
"last_name": "Bailey",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "ryan.sanchez@example.com",
|
||||
"first_name": "Ryan",
|
||||
"last_name": "Sanchez",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "olivia.harris@example.com",
|
||||
"first_name": "Olivia",
|
||||
"last_name": "Harris",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "alexander.kelly@example.com",
|
||||
"first_name": "Alexander",
|
||||
"last_name": "Kelly",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "aubrey.richardson@example.com",
|
||||
"first_name": "Aubrey",
|
||||
"last_name": "Richardson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "noah.cook@example.com",
|
||||
"first_name": "Noah",
|
||||
"last_name": "Cook",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "david.morris@example.com",
|
||||
"first_name": "David",
|
||||
"last_name": "Morris",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "amelia.walker@example.com",
|
||||
"first_name": "Amelia",
|
||||
"last_name": "Walker",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "jacob.richardson@example.com",
|
||||
"first_name": "Jacob",
|
||||
"last_name": "Richardson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "michael.hill@example.com",
|
||||
"first_name": "Michael",
|
||||
"last_name": "Hill",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "sophia.peterson@example.com",
|
||||
"first_name": "Sophia",
|
||||
"last_name": "Peterson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "william.bell@example.com",
|
||||
"first_name": "William",
|
||||
"last_name": "Bell",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "zoey.hall@example.com",
|
||||
"first_name": "Zoey",
|
||||
"last_name": "Hall",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "christopher.murphy@example.com",
|
||||
"first_name": "Christopher",
|
||||
"last_name": "Murphy",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "aubrey.myers@example.com",
|
||||
"first_name": "Aubrey",
|
||||
"last_name": "Myers",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "ryan.richardson@example.com",
|
||||
"first_name": "Ryan",
|
||||
"last_name": "Richardson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "addison.wilson@example.com",
|
||||
"first_name": "Addison",
|
||||
"last_name": "Wilson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "david.sanders@example.com",
|
||||
"first_name": "David",
|
||||
"last_name": "Sanders",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "madison.hill@example.com",
|
||||
"first_name": "Madison",
|
||||
"last_name": "Hill",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "jacob.peterson@example.com",
|
||||
"first_name": "Jacob",
|
||||
"last_name": "Peterson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "scarlett.brooks@example.com",
|
||||
"first_name": "Scarlett",
|
||||
"last_name": "Brooks",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "michael.stewart@example.com",
|
||||
"first_name": "Michael",
|
||||
"last_name": "Stewart",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "grace.bennett@example.com",
|
||||
"first_name": "Grace",
|
||||
"last_name": "Bennett",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "logan.roberts@example.com",
|
||||
"first_name": "Logan",
|
||||
"last_name": "Roberts",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "sophia.baker@example.com",
|
||||
"first_name": "Sophia",
|
||||
"last_name": "Baker",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "john.gomez@example.com",
|
||||
"first_name": "John",
|
||||
"last_name": "Gomez",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "abigail.wood@example.com",
|
||||
"first_name": "Abigail",
|
||||
"last_name": "Wood",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "william.patterson@example.com",
|
||||
"first_name": "William",
|
||||
"last_name": "Patterson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "lily.perez@example.com",
|
||||
"first_name": "Lily",
|
||||
"last_name": "Perez",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "james.hughes@example.com",
|
||||
"first_name": "James",
|
||||
"last_name": "Hughes",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "sophia.murphy@example.com",
|
||||
"first_name": "Sophia",
|
||||
"last_name": "Murphy",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "joseph.edwards@example.com",
|
||||
"first_name": "Joseph",
|
||||
"last_name": "Edwards",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "mia.washington@example.com",
|
||||
"first_name": "Mia",
|
||||
"last_name": "Washington",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "alexander.rogers@example.com",
|
||||
"first_name": "Alexander",
|
||||
"last_name": "Rogers",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "emily.gonzalez@example.com",
|
||||
"first_name": "Emily",
|
||||
"last_name": "Gonzalez",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "daniel.morris@example.com",
|
||||
"first_name": "Daniel",
|
||||
"last_name": "Morris",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "chloe.walker@example.com",
|
||||
"first_name": "Chloe",
|
||||
"last_name": "Walker",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "lucas.peterson@example.com",
|
||||
"first_name": "Lucas",
|
||||
"last_name": "Peterson",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "ava.watson@example.com",
|
||||
"first_name": "Ava",
|
||||
"last_name": "Watson",
|
||||
"gender": "female"
|
||||
},
|
||||
{
|
||||
"email": "mason.howard@example.com",
|
||||
"first_name": "Mason",
|
||||
"last_name": "Howard",
|
||||
"gender": "male"
|
||||
},
|
||||
{
|
||||
"email": "zoey.gonzalez@example.com",
|
||||
"first_name": "Zoey",
|
||||
"last_name": "Gonzalez",
|
||||
"gender": "female"
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user