PATH:
home
/
lab2454c
/
omvstudio.com
/
app
/
Http
/
Controllers
/
Front
<?php namespace App\Http\Controllers\front; use App\Http\Controllers\Controller; use Illuminate\Http\Request; class SubscribeController extends Controller { public function cancelSubscription(Request $request) { auth()->user()->subscription('main')->cancel(); //auth()->user()->subscription('main')->cancelNow(); return redirect()->route('dashboard')->with(['success'=>'You have successfully canceled your subscription and will no longer have the access to the website features.']); } }
[-] ProfileController.php
[edit]
[+]
..
[-] ChatController.php
[edit]
[-] SubscribeController.php
[edit]
[-] WatchListController.php
[edit]
[-] ContactFromController.php
[edit]
[-] SiteController.php
[edit]
[-] DashboardController.php
[edit]
[-] HomeController.php
[edit]