123456789101112131415161718192021222324252627282930 |
- <?php
- // Copyright 2019 Hackware SpA <human@hackware.cl>
- // This file is part of "Hackware Web Services Payment" and licensed under
- // the terms of the GNU Affero General Public License version 3, or (at your
- // option) a later version. You should have received a copy of this license
- // along with the software. If not, see <https://www.gnu.org/licenses/>.
- namespace Hawese\Payment\Http\Controllers;
- use Hawese\Payment\Payment;
- use Hawese\Core\Http\Controllers\Controller;
- use Illuminate\Http\Request;
- class PaymentController extends Controller
- {
- public function __construct()
- {
- $this->middleware('auth');
- }
- public function show(Request $request, $uuid)
- {
- $payment = Payment::find($uuid);
- $this->authorize('read', $payment);
- return $payment;
- }
- }
|