1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 20:34:03 +00:00

Remove dd()

This commit is contained in:
Samuel Štancl 2019-01-20 15:07:13 +01:00 committed by GitHub
parent 1fe851a5fa
commit 68cd063ce7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,6 @@ class TenantAssetController extends Controller
try { try {
return response()->file(storage_path('app/public/' . $path)); return response()->file(storage_path('app/public/' . $path));
} catch (\Throwable $th) { } catch (\Throwable $th) {
dd(storage_path('app/public/' . $path));
abort(404); abort(404);
} }
} }