Stream approved!
4 |The stream has been approved.
5 |├── public ├── favicon.ico ├── robots.txt ├── vendor │ └── livewire │ │ └── manifest.json ├── images │ ├── favicon-tv.png │ └── larastreamers_social.png ├── mix-manifest.json ├── js │ └── app.js.LICENSE.txt ├── .htaccess ├── web.config └── index.php ├── database ├── .gitignore ├── seeders │ ├── DatabaseSeeder.php │ ├── UserTableSeeder.php │ └── TestDataSeeder.php ├── migrations │ ├── 2021_05_17_192445_add_tweeted_at_to_streams_table.php │ ├── 2021_05_18_135514_add_description_to_stream.php │ ├── 2021_07_12_163904_add_channel_id_to_streams.php │ ├── 2021_05_20_200000_add_language_code_to_streams_table.php │ ├── 2021_06_16_143518_add_language_code_to_channels.php │ ├── 2021_10_12_144648_add_auto_import_field_to_channels_table.php │ ├── 2021_07_12_164653_add_twitter_handle_to_channels_table.php │ ├── 2021_07_13_215242_add_hidden_at_to_streams_table.php │ ├── 2021_07_22_172021_add_announcement_tweeted_at_to_streams_table.php │ ├── 2021_05_15_142833_unique_youtube_id_in_streams_table.php │ ├── 2021_07_13_214007_add_actual_start_time_to_streams_table.php │ ├── 2021_06_23_201855_add_approval_fields_to_streams_table.php │ ├── 2021_05_13_104641_create_streams_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2021_05_15_203702_create_channels_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2021_05_13_114225_create_sessions_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2014_10_12_000000_create_users_table.php │ └── 2014_10_12_200000_add_two_factor_columns_to_users_table.php └── factories │ ├── ChannelFactory.php │ └── UserFactory.php ├── bootstrap ├── cache │ └── .gitignore └── app.php ├── storage ├── logs │ └── .gitignore ├── app │ ├── public │ │ └── .gitignore │ └── .gitignore └── framework │ ├── testing │ └── .gitignore │ ├── views │ └── .gitignore │ ├── cache │ ├── data │ │ └── .gitignore │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── .github ├── FUNDING.yml └── workflows │ ├── format-php.yml │ └── run-tests.yml ├── resources ├── markdown │ ├── policy.md │ └── terms.md ├── js │ ├── app.js │ └── bootstrap.js ├── views │ ├── components │ │ ├── input-error.blade.php │ │ ├── stream-button.blade.php │ │ ├── nav-mobile-link.blade.php │ │ ├── icons │ │ │ ├── close.blade.php │ │ │ ├── download.blade.php │ │ │ ├── calendar.blade.php │ │ │ ├── chevron-down.blade.php │ │ │ ├── search.blade.php │ │ │ ├── icon-time.blade.php │ │ │ ├── icon-user.blade.php │ │ │ ├── marker.blade.php │ │ │ ├── twitter.blade.php │ │ │ ├── youtube.blade.php │ │ │ └── world.blade.php │ │ ├── nav-link.blade.php │ │ ├── page-header.blade.php │ │ ├── local-time.blade.php │ │ ├── search.blade.php │ │ ├── main-layout.blade.php │ │ ├── streamer-channel.blade.php │ │ └── add-streams-to-calendar.blade.php │ ├── pages │ │ ├── streamApproved.blade.php │ │ ├── streamRejected.blade.php │ │ ├── archive.blade.php │ │ ├── home.blade.php │ │ ├── partials │ │ │ ├── header-home.blade.php │ │ │ ├── empty-stream-list.blade.php │ │ │ ├── live-indicator.blade.php │ │ │ ├── meta.blade.php │ │ │ ├── header │ │ │ │ ├── slogan.blade.php │ │ │ │ └── preview.blade.php │ │ │ └── footer.blade.php │ │ └── streamers.blade.php │ ├── mail │ │ ├── approved.blade.php │ │ ├── rejected.blade.php │ │ └── submitted.blade.php │ ├── api │ │ └── index.blade.php │ ├── dashboard.blade.php │ ├── terms.blade.php │ ├── policy.blade.php │ ├── layouts │ │ ├── guest.blade.php │ │ └── app.blade.php │ ├── auth │ │ ├── confirm-password.blade.php │ │ ├── forgot-password.blade.php │ │ ├── verify-email.blade.php │ │ ├── reset-password.blade.php │ │ └── login.blade.php │ ├── livewire │ │ ├── timezone-switcher.blade.php │ │ ├── stream-list.blade.php │ │ └── stream-list-archive.blade.php │ └── profile │ │ ├── show.blade.php │ │ └── update-password-form.blade.php ├── css │ └── app.css └── lang │ ├── en │ ├── pagination.php │ ├── auth.php │ └── passwords.php │ └── vendor │ └── backup │ ├── zh-CN │ └── notifications.php │ ├── zh-TW │ └── notifications.php │ └── ja │ └── notifications.php ├── .gitattributes ├── routes ├── api │ └── v1.php ├── channels.php ├── api.php ├── console.php └── web.php ├── .styleci.yml ├── .editorconfig ├── .gitignore ├── app ├── Facades │ └── YouTube.php ├── Http │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── TrustHosts.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TrimStrings.php │ │ ├── Authenticate.php │ │ ├── TrustProxies.php │ │ └── RedirectIfAuthenticated.php │ ├── Controllers │ │ ├── PageHomeController.php │ │ ├── Controller.php │ │ ├── Submission │ │ │ ├── ApproveStreamController.php │ │ │ ├── RejectStreamController.php │ │ │ └── SubmitStreamController.php │ │ ├── PageStreamersController.php │ │ ├── AddSingleStreamToCalendarController.php │ │ ├── Api │ │ │ └── V1 │ │ │ │ └── Streams │ │ │ │ └── IndexController.php │ │ └── CalendarController.php │ ├── Livewire │ │ ├── StreamList.php │ │ ├── StreamListArchive.php │ │ ├── ImportYouTubeLiveStream.php │ │ ├── ImportYouTubeChannel.php │ │ └── SubmitYouTubeLiveStream.php │ └── Resources │ │ └── StreamResource.php ├── View │ └── Components │ │ ├── AppLayout.php │ │ ├── GuestLayout.php │ │ ├── InputError.php │ │ ├── LocalTime.php │ │ ├── StreamButton.php │ │ ├── NavLink.php │ │ ├── NavMobileLink.php │ │ ├── AddStreamsToCalendar.php │ │ └── MainLayout.php ├── Actions │ ├── Submission │ │ ├── RejectStreamAction.php │ │ ├── ApproveStreamAction.php │ │ └── SubmitStreamAction.php │ ├── Fortify │ │ ├── PasswordValidationRules.php │ │ ├── ResetUserPassword.php │ │ ├── CreateNewUser.php │ │ ├── UpdateUserPassword.php │ │ └── UpdateUserProfileInformation.php │ ├── Jetstream │ │ └── DeleteUser.php │ ├── ImportVideoAction.php │ ├── CollectTimezones.php │ └── SortStreamsByDateAction.php ├── Providers │ ├── BroadcastServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── TwitterServiceProvider.php │ ├── EventServiceProvider.php │ ├── JetstreamServiceProvider.php │ └── FortifyServiceProvider.php ├── Services │ ├── Twitter.php │ └── YouTube │ │ ├── YouTubeException.php │ │ ├── ChannelData.php │ │ └── StreamData.php ├── Mail │ ├── StreamSubmittedMail.php │ ├── StreamApprovedMail.php │ └── StreamRejectedMail.php ├── Console │ └── Commands │ │ ├── ImportChannelStreamsCommand.php │ │ ├── TweetAboutWeeklySummaryCommand.php │ │ ├── TweetAboutLiveStreamsCommand.php │ │ ├── TweetAboutUpcomingStreamsCommand.php │ │ ├── CheckIfLiveStreamsHaveEndedCommand.php │ │ ├── CheckIfUpcomingStreamsAreLiveCommand.php │ │ └── ImportChannelsForStreamsCommand.php ├── Exceptions │ └── Handler.php ├── Rules │ └── YouTubeRule.php ├── Models │ ├── Channel.php │ └── User.php └── Jobs │ ├── TweetStreamIsLiveJob.php │ ├── TweetStreamIsUpcomingJob.php │ └── ImportYoutubeChannelStreamsJob.php ├── tests ├── CreatesApplication.php ├── Feature │ ├── Http │ │ └── Controllers │ │ │ ├── Submission │ │ │ ├── SubmissionModalTest.php │ │ │ ├── RejectStreamControllerTest.php │ │ │ └── ApproveStreamControllerTest.php │ │ │ └── Api │ │ │ └── V1 │ │ │ └── Streams │ │ │ └── IndexControllerTest.php │ ├── JetStream │ │ ├── BrowserSessionsTest.php │ │ ├── AuthenticationTest.php │ │ ├── ProfileInformationTest.php │ │ ├── DeleteApiTokenTest.php │ │ ├── PasswordConfirmationTest.php │ │ ├── DeleteAccountTest.php │ │ ├── CreateApiTokenTest.php │ │ └── ApiTokenPermissionsTest.php │ ├── PagesResponseTest.php │ ├── Commands │ │ ├── ImportChannelStreamsCommandTest.php │ │ ├── CheckIfLiveStreamsHaveEndedCommandTest.php │ │ └── CheckIfUpcomingStreamsAreLiveCommandTest.php │ ├── PageDashboardTest.php │ ├── Actions │ │ └── Submission │ │ │ ├── RejectStreamActionTest.php │ │ │ ├── SubmitStreamActionTest.php │ │ │ └── ApproveStreamActionTest.php │ ├── FeedTest.php │ └── Models │ │ └── StreamTest.php ├── Fakes │ └── TwitterFake.php └── TestCase.php ├── server.php ├── webpack.mix.js ├── config ├── cors.php ├── feed.php ├── view.php ├── services.php ├── hashing.php ├── sanctum.php └── broadcasting.php ├── package.json ├── .env.example ├── phpunit.xml.dist ├── tailwind.config.js └── artisan /public/favicon.ico: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /public/vendor/livewire/manifest.json: -------------------------------------------------------------------------------- 1 | {"/livewire.js":"/livewire.js?id=21fa1dd78491a49255cd"} -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [christophrumpel] 4 | 5 | -------------------------------------------------------------------------------- /public/images/favicon-tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/larastreamers/main/public/images/favicon-tv.png -------------------------------------------------------------------------------- /resources/markdown/policy.md: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | Edit this file to define the privacy policy for your application. 4 | -------------------------------------------------------------------------------- /resources/markdown/terms.md: -------------------------------------------------------------------------------- 1 | # Terms of Service 2 | 3 | Edit this file to define the terms of service for your application. 4 | -------------------------------------------------------------------------------- /public/images/larastreamers_social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweichart/larastreamers/main/public/images/larastreamers_social.png -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | 3 | require('alpinejs'); 4 | window.moment = require('moment'); 5 | require('moment-timezone'); 6 | -------------------------------------------------------------------------------- /resources/views/components/input-error.blade.php: -------------------------------------------------------------------------------- 1 |
The stream has been approved.
5 |The stream has been rejected.
5 |
5 | There are no upcoming streams 😢
6 | Be the first the next one.
7 |
9 | There is no better way to learn than by watching other developers 10 | code live. Find out who is streaming next in the Laravel world. 11 |
12 | @if($upcomingStream) 13 |{{ $channel->name }}
9 |{{ $channel->country }}
12 |{{ \Illuminate\Support\Str::of($channel->description)->limit(100) }}
14 |