You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This happens when I run php artisan scout:import. Notice how the view gets dumped at the start of the command.
php artisan scout:import
@component('mail::message')
# Your report is ready
Find it attached in this email.
Best Regards,<br>
{{ config('app.name') }}
@endcomponent
Importing [App\Domain\Products\Models\Product]
Switching to the new index
5/5 [⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬] 100%
[OK] All [App\Domain\Products\Models\Product] records have been imported.
Importing [App\Domain\VendorsAndPublishers\Models\Publisher]
Switching to the new index
5/5 [⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬] 100%
[OK] All [App\Domain\VendorsAndPublishers\Models\Publisher] records have been imported.
Importing [App\Domain\VendorsAndPublishers\Models\Vendor]
Switching to the new index
5/5 [⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬⚬] 100%
[OK] All [App\Domain\VendorsAndPublishers\Models\Vendor] records have been imported.
I haven't experienced this with other commands so I wonder what might be causing this.
The text was updated successfully, but these errors were encountered:
If we are lucky enough it will break some tests) If no then testing framework doesn't cover this issue and we have to debug it in a real laravel application
Describe the bug
When running
php artisan scout:import
I'm seeing my mail templates get dumped in the console.To Reproduce
I have this mail view:
app\Domain\Reports\Mail\views\report-generated.blade.php
The directory for that view is registered in AppServiceProvider like:
View::addNamespace('report_views', app_path('Domain/Reports/Mail/views'));
This happens when I run
php artisan scout:import
. Notice how the view gets dumped at the start of the command.I haven't experienced this with other commands so I wonder what might be causing this.
The text was updated successfully, but these errors were encountered: