This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-container fluid> | |
<v-alert | |
:value="showLeadBalanceEditSuccess" | |
type="success" | |
text | |
dismissible | |
transition="scale-transition" | |
> | |
Ставки успешно отредактированы |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Listeners; | |
use App\Events\ExportCreate; | |
use App\Models\Affiliate; | |
use App\Models\Export; | |
use App\Models\Subaffiliate; | |
use App\User; | |
use Illuminate\Contracts\Queue\ShouldQueue; |