├── public ├── favicon.ico ├── robots.txt ├── img │ ├── ico.png │ ├── logo-big.png │ ├── logo-mid.png │ ├── logo-text.png │ ├── apple-touch-icon.png │ └── default-avatar.png ├── screenshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png ├── fonts │ └── Mona-Sans.woff2 ├── brand │ ├── pinkary-icon.zip │ ├── pinkary-logo-black.zip │ └── pinkary-logo-white.zip ├── index.php ├── js │ └── filament │ │ └── forms │ │ └── components │ │ ├── textarea.js │ │ ├── tags-input.js │ │ └── key-value.js └── .htaccess ├── database ├── backups │ └── .gitkeep ├── .gitignore ├── seeders │ └── DatabaseSeeder.php ├── migrations │ ├── 2024_03_21_023728_add_pinned_to_questions_table.php │ ├── 2024_02_25_114324_add_timezone_to_users_table.php │ ├── 2024_02_21_183041_add_settings_column_to_users_table.php │ ├── 2024_04_06_171145_alter_table_users_remove_timezone_column.php │ ├── 2024_02_22_001030_add_avatar_to_users_table.php │ ├── 2024_04_13_202648_add_views_column_to_users_table.php │ ├── 2024_02_19_210237_add_links_sort_to_users_table.php │ ├── 2024_02_25_175147_add_is_reported_to_questions_table.php │ ├── 2024_07_05_152231_add_parent_id_to_questions.php │ ├── 2024_04_13_202506_add_views_column_to_questions_table.php │ ├── 2024_07_23_055716_add_is_visible_to_links_table.php │ ├── 2024_02_23_203342_add_is_verified_to_users_table.php │ ├── 2024_04_03_201010_add_is_ignored_to_questions_table.php │ ├── 2024_04_06_112143_add_click_count_to_links_table.php │ ├── 2024_04_08_142134_add_avatar_updated_at_to_users_table.php │ ├── 2024_03_01_225200_add_mail_preference_time_to_users_table.php │ ├── 2024_03_24_173834_add_github_username_to_users_table.php │ ├── 2024_04_07_150326_add_is_company_verified_to_users_table.php │ ├── 2024_04_18_124813_add_is_uploaded_avatar_column_to_users_table.php │ ├── 2024_05_12_153034_rename_answered_at_to_answer_created_at_in_questions_table.php │ ├── 2024_03_30_152936_add_anonymously_preference_to_users_table.php │ ├── 2024_07_25_232940_optimize_database_settings.php │ ├── 2024_07_25_183750_set_journal_mode_and_synchronous_settings.php │ ├── 2024_07_25_212051_optimize_database_settings.php │ ├── 2024_02_17_090102_create_links_table.php │ ├── 2024_05_11_141256_add_answer_updated_at_to_questions_table.php │ ├── 2024_02_28_000521_create_notifications_table.php │ ├── 2024_05_01_170027_add_user_id_index_to_links_table.php │ ├── 2024_03_29_040310_create_followers_table.php │ ├── 2024_05_01_152116_add_from_id_and_to_id_indexes_to_questions_table.php │ ├── 2024_02_25_144346_create_likes_table.php │ ├── 2024_07_06_191351_create_bookmarks_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 2024_10_13_234344_create_pan_tables.php │ ├── 2024_02_20_213416_create_questions_table.php │ ├── 2024_08_07_203106_create_hashtags_table.php │ └── 2024_02_25_202236_add_uuid_to_questions_table.php └── factories │ ├── Concerns │ └── RefreshOnCreate.php │ ├── HashtagFactory.php │ ├── PanAnalyticFactory.php │ ├── LikeFactory.php │ ├── LinkFactory.php │ └── BookmarkFactory.php ├── bootstrap ├── cache │ └── .gitignore ├── providers.php └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── resources ├── js │ ├── bootstrap.js │ ├── abbreviate.js │ ├── copy-url.js │ ├── click-handler.js │ ├── show-more.js │ └── share-profile.js ├── views │ ├── components │ │ ├── section-border.blade.php │ │ ├── input-label.blade.php │ │ ├── autocomplete │ │ │ └── hashtag-item.blade.php │ │ ├── badge.blade.php │ │ ├── icons │ │ │ ├── pin.blade.php │ │ │ ├── close.blade.php │ │ │ ├── plus.blade.php │ │ │ ├── bars.blade.php │ │ │ ├── chevron-left.blade.php │ │ │ ├── bolt.blade.php │ │ │ ├── chart.blade.php │ │ │ ├── magnifying-glass.blade.php │ │ │ ├── paper-airplane.blade.php │ │ │ ├── trending-solid.blade.php │ │ │ ├── bookmark-solid.blade.php │ │ │ ├── bookmark.blade.php │ │ │ ├── arrow-top.blade.php │ │ │ ├── ellipsis-horizontal.blade.php │ │ │ ├── heart.blade.php │ │ │ ├── user.blade.php │ │ │ ├── link.blade.php │ │ │ ├── reset.blade.php │ │ │ ├── twitter-x.blade.php │ │ │ ├── bell.blade.php │ │ │ ├── eye.blade.php │ │ │ ├── chat-bubble.blade.php │ │ │ ├── home.blade.php │ │ │ ├── light-bulb.blade.php │ │ │ ├── share.blade.php │ │ │ ├── verified-company.blade.php │ │ │ ├── verified.blade.php │ │ │ ├── heart-solid.blade.php │ │ │ ├── smile.blade.php │ │ │ ├── sortable-handle.blade.php │ │ │ ├── users.blade.php │ │ │ ├── trash.blade.php │ │ │ ├── eye-off.blade.php │ │ │ ├── camera.blade.php │ │ │ ├── globe.blade.php │ │ │ ├── github.blade.php │ │ │ └── qr-code.blade.php │ │ ├── dropdown-button.blade.php │ │ ├── dropdown-link.blade.php │ │ ├── input-error.blade.php │ │ ├── danger-button.blade.php │ │ ├── primary-colorless-button.blade.php │ │ ├── checkbox.blade.php │ │ ├── secondary-button.blade.php │ │ ├── text-input.blade.php │ │ ├── primary-button.blade.php │ │ ├── load-more-button.blade.php │ │ ├── comments.blade.php │ │ ├── back-to-top.blade.php │ │ ├── image-lightbox.blade.php │ │ ├── follow-button.blade.php │ │ ├── select-input.blade.php │ │ ├── nav-link.blade.php │ │ ├── links │ │ │ └── list-item.blade.php │ │ ├── textarea.blade.php │ │ ├── responsive-nav-link.blade.php │ │ ├── dropdown-link-profile.blade.php │ │ ├── post-divider.blade.php │ │ └── modal-qr-code.blade.php │ ├── vendor │ │ ├── mail │ │ │ └── html │ │ │ │ └── header.blade.php │ │ └── pulse │ │ │ └── dashboard.blade.php │ ├── livewire │ │ ├── navigation │ │ │ └── notifications-count │ │ │ │ └── show.blade.php │ │ ├── bookmarks │ │ │ └── index.blade.php │ │ ├── about-users-avatars.blade.php │ │ ├── flash-messages │ │ │ └── show.blade.php │ │ ├── questions │ │ │ └── index.blade.php │ │ └── home │ │ │ └── trending-questions.blade.php │ ├── bookmarks │ │ └── index.blade.php │ ├── notifications │ │ └── index.blade.php │ ├── home │ │ ├── users.blade.php │ │ ├── trending-questions.blade.php │ │ ├── feed.blade.php │ │ └── following.blade.php │ ├── hashtag │ │ └── show.blade.php │ ├── profile │ │ └── show.blade.php │ ├── mail │ │ └── pending-notifications.blade.php │ ├── support.blade.php │ ├── layouts │ │ └── about.blade.php │ └── auth │ │ └── confirm-password.blade.php └── css │ └── app.css ├── postcss.config.js ├── tests ├── Fixtures │ ├── Turnstile │ │ ├── error.json │ │ └── success.json │ └── TestType.php ├── Arch │ ├── ContractsTest.php │ ├── MailablesTest.php │ ├── ProvidersTest.php │ ├── ViewTest.php │ ├── JobsTest.php │ ├── ConsoleTest.php │ ├── ServicesTest.php │ ├── ExceptionsTest.php │ ├── RulesTest.php │ ├── EnumsTest.php │ ├── NotificationsTest.php │ ├── FactoriesTest.php │ ├── GlobalTest.php │ ├── HttpTest.php │ └── LivewireTest.php ├── .pest │ └── snapshots │ │ └── Unit │ │ └── Services │ │ ├── ContentProvidersTest │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example______http___example__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____www_example_com______www_example_com__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____htt___example_com______htt___example_com__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example_com______http___example_com__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http__example_com______http__example_com__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http__example_com______http__example_com____2.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http____example_com______http____example_com__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http____example_com______http____example_com____2.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___exa__mple_com______http___exa__mple_com__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example__com______http___example__com__.snap │ │ ├── image_exists.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example_com_👍______http___example_com_👍__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example_com_abcd______http___example_com_abcd__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____protocol___example_com______protocol___example_com__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example_com_this___that______http___example_com_this___that__.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example_com_this_that_…__that______http___example_com_this_that______that__.snap │ │ ├── mention_with_data_set_____w31r4_________w31r4____.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http____2001_0db8_85a3_0000_0…_7334_______http____2001_0db8_85a3_0000_0____7334___.snap │ │ ├── malformed_links_are_correctly_handled_by_content_parser_with_data_set____http____2001_0db8_85a3_0000_0…__8080______http____2001_0db8_85a3_0000_0_____8080__.snap │ │ ├── mention_with_data_set_____nunomaduro________nunomaduro___.snap │ │ ├── mention_with_data_set_____nunomaduro________nunomaduro_____2.snap │ │ ├── mention_with_data_set_____nunomaduro________nunomaduro_____3.snap │ │ ├── mention_with_data_set_____nunomaduro________nunomaduro_____4.snap │ │ ├── mention_with_data_set_____nunomaduro________nunomaduro_____5.snap │ │ ├── mention_with_data_set____Hi__nunomaduro______Hi__nunomaduro__.snap │ │ ├── mention_with_data_set_____nunomaduro_hi_______nunomaduro_hi__.snap │ │ ├── code_with_data_set_______phpecho__Hello__World_______________php_necho__Hello__World____n_____.snap │ │ ├── code_with_data_set_______php_echo__Hello__World_______________php__necho__Hello__World____n_____.snap │ │ └── code_with_data_set____Check_this____echo__Hello…__________Check_this__n____necho__Hello_____n_____.snap │ │ └── ContentTest │ │ ├── it_ignores_mention_inside__a_.snap │ │ ├── link.snap │ │ └── mention.snap ├── Http │ ├── ChangelogTest.php │ ├── Citadel │ │ ├── LoginTest.php │ │ ├── DashboardTest.php │ │ ├── Questions │ │ │ └── IndexTest.php │ │ └── Users │ │ │ └── IndexTest.php │ ├── TelegramTest.php │ ├── Home │ │ ├── UsersTest.php │ │ ├── TrendingTest.php │ │ └── FollowingTest.php │ ├── LogoutTest.php │ ├── Profile │ │ ├── Connect │ │ │ └── GitHub │ │ │ │ └── IndexTest.php │ │ └── Timezone │ │ │ └── UpdateTest.php │ ├── Bookmarks │ │ └── IndexTest.php │ ├── Hashtag │ │ └── ShowTest.php │ ├── VerificationNotificationTest.php │ └── ConfirmPasswordTest.php ├── TestCase.php ├── Unit │ ├── Factories │ │ └── HashtagFactoryTest.php │ ├── Livewire │ │ ├── AboutUsersAvatarsTest.php │ │ └── Views │ │ │ └── CreateTest.php │ ├── Notifications │ │ ├── QuestionAnsweredTest.php │ │ ├── QuestionCreatedTest.php │ │ └── UserMentionedTest.php │ ├── Policies │ │ ├── LikePolicyTest.php │ │ ├── LinkPolicyTest.php │ │ ├── BookmarkPolicyTest.php │ │ └── UserPolicyTest.php │ ├── Services │ │ ├── FirewallTest.php │ │ ├── ChangelogTest.php │ │ ├── BioTest.php │ │ └── AvatarTest.php │ ├── Models │ │ ├── HashtagTest.php │ │ ├── LinkTest.php │ │ ├── LikeTest.php │ │ └── BookmarkTest.php │ ├── Citadel │ │ ├── Users │ │ │ └── IndexTest.php │ │ └── Questions │ │ │ └── QuestionOverviewTest.php │ ├── Rules │ │ ├── ValidTimezoneTest.php │ │ ├── RecaptchaTest.php │ │ └── MaxUploadsTest.php │ └── Mail │ │ └── PendingNotificationsTest.php └── Console │ ├── SyncVerifiedUsersCommandTest.php │ └── PerformDatabaseBackupCommandTest.php ├── app ├── Exceptions │ └── GitHubException.php ├── Contracts │ ├── Services │ │ └── ParsableContentProvider.php │ └── Models │ │ └── Viewable.php ├── Http │ ├── Controllers │ │ ├── BookmarksController.php │ │ ├── HashtagController.php │ │ ├── ChangelogController.php │ │ ├── UserTimezoneController.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ └── UpdatePasswordController.php │ │ ├── UserIsVerifiedController.php │ │ ├── QuestionController.php │ │ └── NotificationController.php │ ├── Middleware │ │ └── EnsureVerifiedEmailsForSignInUsers.php │ └── Requests │ │ └── UserAvatarUpdateRequest.php ├── Livewire │ ├── FlashMessages │ │ └── Show.php │ ├── Concerns │ │ ├── HasLoadMore.php │ │ └── NeedsVerifiedEmail.php │ ├── Home │ │ ├── TrendingQuestions.php │ │ └── QuestionsFollowing.php │ ├── AboutUsersAvatars.php │ ├── Views │ │ └── Create.php │ ├── Navigation │ │ └── NotificationsCount │ │ │ └── Show.php │ └── Bookmarks │ │ └── Index.php ├── Policies │ ├── LikePolicy.php │ ├── BookmarkPolicy.php │ ├── UserPolicy.php │ └── LinkPolicy.php ├── View │ └── Components │ │ ├── AppLayout.php │ │ ├── AboutLayout.php │ │ ├── GuestLayout.php │ │ └── Footer.php ├── Filament │ └── Resources │ │ ├── UserResource │ │ └── Pages │ │ │ └── Index.php │ │ └── QuestionResource │ │ └── Pages │ │ └── Index.php ├── Services │ ├── Git.php │ ├── ParsableContentProviders │ │ ├── StripProviderParsable.php │ │ ├── BrProviderParsable.php │ │ ├── MentionProviderParsable.php │ │ └── HashtagProviderParsable.php │ ├── Autocomplete │ │ └── Result.php │ ├── Firewall.php │ ├── ParsableBio.php │ └── Avatar.php ├── Providers │ ├── GitHubServiceProvider.php │ └── PulseServiceProvider.php ├── Enums │ └── UserMailPreference.php ├── Models │ └── PanAnalytic.php ├── Rules │ ├── MaxUploads.php │ ├── VerifiedOnly.php │ └── NoBlankCharacters.php ├── Jobs │ └── SyncVerifiedUser.php ├── Console │ └── Commands │ │ └── SyncVerifiedUsersCommand.php └── Notifications │ ├── QuestionAnswered.php │ ├── UserMentioned.php │ └── QuestionCreated.php ├── .gitattributes ├── phpstan.neon ├── artisan ├── .editorconfig ├── vite.config.js ├── .gitignore ├── package.json ├── rector.php ├── routes └── console.php ├── docker-compose.yml ├── forge-deployment.sh └── config └── sponsors.php /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/backups/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- 1 | import axios from 'axios'; 2 | 3 | window.axios = axios; 4 | -------------------------------------------------------------------------------- /public/img/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/img/ico.png -------------------------------------------------------------------------------- /public/img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/img/logo-big.png -------------------------------------------------------------------------------- /public/img/logo-mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/img/logo-mid.png -------------------------------------------------------------------------------- /public/img/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/img/logo-text.png -------------------------------------------------------------------------------- /public/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/screenshots/1.png -------------------------------------------------------------------------------- /public/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/screenshots/2.png -------------------------------------------------------------------------------- /public/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/screenshots/3.png -------------------------------------------------------------------------------- /public/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/screenshots/4.png -------------------------------------------------------------------------------- /public/fonts/Mona-Sans.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/fonts/Mona-Sans.woff2 -------------------------------------------------------------------------------- /public/brand/pinkary-icon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/brand/pinkary-icon.zip -------------------------------------------------------------------------------- /public/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/img/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/img/default-avatar.png -------------------------------------------------------------------------------- /public/brand/pinkary-logo-black.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/brand/pinkary-logo-black.zip -------------------------------------------------------------------------------- /public/brand/pinkary-logo-white.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bobryk0999/Pinkary_1/HEAD/public/brand/pinkary-logo-white.zip -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | }; 7 | -------------------------------------------------------------------------------- /tests/Fixtures/Turnstile/error.json: -------------------------------------------------------------------------------- 1 | { 2 | "success": false, 3 | "error-codes": [ 4 | "timeout-or-duplicate" 5 | ], 6 | "messages": [] 7 | } -------------------------------------------------------------------------------- /resources/views/components/section-border.blade.php: -------------------------------------------------------------------------------- 1 |
--------------------------------------------------------------------------------
/tests/.pest/snapshots/Unit/Services/ContentProvidersTest/malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example_com_👍______http___example_com_👍__.snap:
--------------------------------------------------------------------------------
1 | http://example.com/👍
--------------------------------------------------------------------------------
/tests/Arch/MailablesTest.php:
--------------------------------------------------------------------------------
1 | expect('App\Mail')
7 | ->toHaveConstructor()
8 | ->toExtend('Illuminate\Mail\Mailable');
9 |
--------------------------------------------------------------------------------
/tests/.pest/snapshots/Unit/Services/ContentProvidersTest/malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example_com_abcd______http___example_com_abcd__.snap:
--------------------------------------------------------------------------------
1 | http://example.com:abcd
--------------------------------------------------------------------------------
/tests/.pest/snapshots/Unit/Services/ContentProvidersTest/malformed_links_are_correctly_handled_by_content_parser_with_data_set____protocol___example_com______protocol___example_com__.snap:
--------------------------------------------------------------------------------
1 | protocol://example.com
--------------------------------------------------------------------------------
/tests/Arch/ProvidersTest.php:
--------------------------------------------------------------------------------
1 | expect('App\Providers')
7 | ->toExtend('Illuminate\Support\ServiceProvider')
8 | ->not->toBeUsed();
9 |
--------------------------------------------------------------------------------
/resources/views/components/input-label.blade.php:
--------------------------------------------------------------------------------
1 | @props([
2 | 'value',
3 | ])
4 |
5 |
8 |
--------------------------------------------------------------------------------
/tests/.pest/snapshots/Unit/Services/ContentProvidersTest/malformed_links_are_correctly_handled_by_content_parser_with_data_set____http___example_com_this___that______http___example_com_this___that__.snap:
--------------------------------------------------------------------------------
1 | http://example.com?this<>=that
--------------------------------------------------------------------------------
/app/Exceptions/GitHubException.php:
--------------------------------------------------------------------------------
1 | get('/changelog')
7 | ->assertOk()
8 | ->assertViewIs('changelog');
9 | });
10 |
--------------------------------------------------------------------------------
/tests/Http/Citadel/LoginTest.php:
--------------------------------------------------------------------------------
1 | get('citadel/login');
7 |
8 | $response->assertStatus(404);
9 | });
10 |
--------------------------------------------------------------------------------
/tests/TestCase.php:
--------------------------------------------------------------------------------
1 | =that
--------------------------------------------------------------------------------
/tests/.pest/snapshots/Unit/Services/ContentProvidersTest/mention_with_data_set_____w31r4_________w31r4____.snap:
--------------------------------------------------------------------------------
1 | @w31r4_
--------------------------------------------------------------------------------
/tests/Arch/ViewTest.php:
--------------------------------------------------------------------------------
1 | expect('App\View\Components')
7 | ->toExtend('Illuminate\View\Component')
8 | ->toHaveMethod('render')
9 | ->not->toBeUsed();
10 |
--------------------------------------------------------------------------------
/tests/.pest/snapshots/Unit/Services/ContentProvidersTest/malformed_links_are_correctly_handled_by_content_parser_with_data_set____http____2001_0db8_85a3_0000_0…_7334_______http____2001_0db8_85a3_0000_0____7334___.snap:
--------------------------------------------------------------------------------
1 | http://[2001:0db8:85a3:0000:0000:8a2e:0370:7334]
--------------------------------------------------------------------------------
/tests/.pest/snapshots/Unit/Services/ContentTest/it_ignores_mention_inside__a_.snap:
--------------------------------------------------------------------------------
1 | pinkary.com/@nunomaduro
--------------------------------------------------------------------------------
/resources/views/vendor/mail/html/header.blade.php:
--------------------------------------------------------------------------------
1 | @props(['url'])
2 |
6 |
7 | echo "Hello, World!";
--------------------------------------------------------------------------------
/resources/views/components/icons/chevron-left.blade.php:
--------------------------------------------------------------------------------
1 |
10 |
--------------------------------------------------------------------------------
/tests/.pest/snapshots/Unit/Services/ContentProvidersTest/code_with_data_set_______php_echo__Hello__World_______________php__necho__Hello__World____n_____.snap:
--------------------------------------------------------------------------------
1 | echo "Hello, World!";
--------------------------------------------------------------------------------
/resources/views/components/input-error.blade.php:
--------------------------------------------------------------------------------
1 | @props([
2 | 'messages',
3 | ])
4 |
5 | @if ($messages)
6 | echo "Hello, World!";
3 |
4 | and this:
5 | echo "Hello, World!";
--------------------------------------------------------------------------------
/resources/views/profile/show.blade.php:
--------------------------------------------------------------------------------
1 | No bookmarks.
11 |20 | {{ $link->description }} 21 |
22 |Last Updated: 02 March 2024
16 | 17 |18 | If you have any questions or need help, please feel free to contact us at team@pinkary.com . 19 |
20 |There is no trending questions right now.
5 |