Development Sandbox

Personal testing environment for experiments and prototypes

SandboxController.php
// Sandbox environment initialized namespace App\Http\Controllers;
class SandboxController extends Controller { public function index() { // No active projects for testing if (!Project::active()->exists()) { return view('sandbox.empty'); } } }
No active projects for testing