PHP Classes

File: routes/web.php

Recommend this page to a friend!
  Classes of Channaveer Hakari   Laravel Stripe Integration Tutorial   routes/web.php   Download  
File: routes/web.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Laravel Stripe Integration Tutorial
Process Stripe payments in a Laravel application
Author: By
Last change:
Date: 5 months ago
Size: 210 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Support\Facades\Route;

Route::get('/payments', 'PaymentsController@create');
Route::post('/payments', 'PaymentsController@store');
Route::get('/thankyou', 'PaymentsController@thankyou');