Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace App\Http\Controllers;
- use App\Notifications\ActivateUser;
- use App\User;
- use Illuminate\Http\Request;
- class LkController extends Controller
- {
- public function __construct()
- {
- $this->middleware('auth');
- }
- public function index() {
- if (\Auth::user()->state == 'new') {
- // Как отправить уведомление???
- } else {
- return view('lk.index');
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement