Account Deletion Confirmation
10 |Are you sure you want to delete your account
13 | 14 | 15 | 23 | 24 | 25 | 26 | 27 | 28 |├── public ├── favicon.ico ├── robots.txt ├── css │ └── main.css ├── .htaccess ├── web.config └── index.php ├── app ├── Listeners │ └── .gitkeep ├── Policies │ └── .gitkeep ├── Events │ └── Event.php ├── Http │ ├── helpers.php │ ├── Requests │ │ └── Request.php │ ├── Controllers │ │ ├── PaypalController.php │ │ ├── StripeController.php │ │ ├── SteamController.php │ │ ├── Controller.php │ │ ├── AviaryController.php │ │ ├── PageController.php │ │ ├── Auth │ │ │ ├── PasswordController.php │ │ │ └── AuthController.php │ │ ├── TwilioController.php │ │ ├── FacebookController.php │ │ ├── GithubController.php │ │ ├── LobController.php │ │ ├── ContactController.php │ │ ├── WebScrapingController.php │ │ ├── FoursquareController.php │ │ ├── TumblrController.php │ │ ├── SlackController.php │ │ ├── ClockworkController.php │ │ ├── YahooController.php │ │ ├── LastFmController.php │ │ ├── NytController.php │ │ ├── TwitterController.php │ │ ├── AccountController.php │ │ ├── LinkedInController.php │ │ └── OauthController.php │ ├── Middleware │ │ ├── EncryptCookies.php │ │ ├── VerifyCsrfToken.php │ │ ├── RedirectIfAuthenticated.php │ │ └── Authenticate.php │ └── Kernel.php ├── Jobs │ └── Job.php ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── Providers │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ ├── AppServiceProvider.php │ └── RouteServiceProvider.php ├── User.php └── Exceptions │ └── Handler.php ├── database ├── .gitignore ├── seeds │ ├── .gitkeep │ └── DatabaseSeeder.php ├── migrations │ ├── .gitkeep │ ├── 2014_10_12_100000_create_password_resets_table.php │ └── 2014_10_12_000000_create_users_table.php ├── database.sqlite └── factories │ └── ModelFactory.php ├── .optic └── .gitignore ├── resources ├── views │ ├── vendor │ │ └── .gitkeep │ ├── emails │ │ └── contact.blade.php │ ├── auth │ │ ├── emails │ │ │ └── password.blade.php │ │ ├── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ ├── login.blade.php │ │ └── register.blade.php │ ├── account │ │ ├── deleteAccount.blade.php │ │ ├── dashboard.blade.php │ │ ├── linkedAccount.blade.php │ │ ├── confirm.blade.php │ │ ├── avatar.blade.php │ │ ├── changePassword.blade.php │ │ └── profileInfo.blade.php │ ├── layouts │ │ ├── partials │ │ │ ├── alerts.blade.php │ │ │ └── navbar.blade.php │ │ └── master.blade.php │ ├── api │ │ ├── yahoo.blade.php │ │ ├── paypal.blade.php │ │ ├── facebook.blade.php │ │ ├── scraping.blade.php │ │ ├── tumblr.blade.php │ │ ├── linkedin.blade.php │ │ ├── lob.blade.php │ │ ├── foursquare.blade.php │ │ ├── clockwork.blade.php │ │ ├── nyt.blade.php │ │ ├── lastfm.blade.php │ │ ├── aviary.blade.php │ │ ├── github.blade.php │ │ ├── twilio.blade.php │ │ ├── steam.blade.php │ │ ├── twitter.blade.php │ │ ├── slack.blade.php │ │ └── stripe.blade.php │ ├── errors │ │ └── 503.blade.php │ ├── welcome.blade.php │ └── contact.blade.php ├── assets │ └── sass │ │ └── app.scss └── lang │ └── en │ ├── texts.php │ ├── pagination.php │ ├── auth.php │ ├── passwords.php │ └── validation.php ├── storage ├── app │ └── .gitignore ├── debugbar │ └── .gitignore ├── logs │ └── .gitignore ├── framework │ ├── cache │ │ └── .gitignore │ ├── views │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── .gitignore └── github │ ├── 8334c0b2788478665cdae391eb08e241.etag │ ├── b38a1f48f8dc9fcaa993dc8a009f4e18.etag │ └── b38a1f48f8dc9fcaa993dc8a009f4e18 ├── bootstrap ├── cache │ └── .gitignore ├── autoload.php └── app.php ├── Procfile ├── .gitattributes ├── phpunit ├── optic.yml ├── package.json ├── .gitignore ├── tests ├── ExampleTest.php └── TestCase.php ├── .travis.yml ├── gulpfile.js ├── server.php ├── config ├── ttwitter.php ├── compile.php ├── cloudder.php ├── view.php ├── broadcasting.php ├── instagram.php ├── facebook.php ├── twilio.php ├── github.php ├── cache.php ├── queue.php ├── filesystems.php ├── services.php ├── auth.php ├── mail.php ├── database.php └── session.php ├── phpunit.xml ├── LICENSE.md ├── CONTRIBUTING.md ├── artisan ├── .env.example ├── composer.json └── app.json /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.optic/.gitignore: -------------------------------------------------------------------------------- 1 | captures/ 2 | -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: vendor/bin/heroku-php-apache2 public -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/views/emails/contact.blade.php: -------------------------------------------------------------------------------- 1 | {{ $body }} -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/css/main.css: -------------------------------------------------------------------------------- 1 | .main-container { 2 | margin-top: 80px; 3 | } -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.less linguist-vendored 4 | -------------------------------------------------------------------------------- /storage/github/8334c0b2788478665cdae391eb08e241.etag: -------------------------------------------------------------------------------- 1 | "3df791619e22c5c55298a40c8edae184" -------------------------------------------------------------------------------- /storage/github/b38a1f48f8dc9fcaa993dc8a009f4e18.etag: -------------------------------------------------------------------------------- 1 | "3f7e9c9e299c4bf39b22a67d731afce1" -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- 1 | getEmailForPasswordReset()) }}"> {{ $link }} 2 | -------------------------------------------------------------------------------- /app/Http/Requests/Request.php: -------------------------------------------------------------------------------- 1 | call(UserTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /app/Http/Controllers/PaypalController.php: -------------------------------------------------------------------------------- 1 | 2 |
You can delete your account, but keep in mind this action is irreversible.
6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | 5 | 6 | @include('layouts.partials.alerts') 7 | 8 | @include('account.profileInfo') 9 | 10 | @include('account.avatar') 11 | 12 | @include('account.changePassword') 13 | 14 | @include('account.deleteAccount') 15 | 16 | 17 | @stop -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | has('info')) 2 |Are you sure you want to delete your account
13 | 14 | 15 | 23 | 24 | 25 | 26 | 27 | 28 |Weather for ZIP Code: 10007
23 | 24 |It is currently {{ $data['item']['condition']['temp'] }} degrees in New York, NY.
26 |SELECT * FROM weather.forecast WHERE (location = 10007)31 | 32 |
Redirects to PayPal and allows authorizing the sample payment.
27 | 28 | 29 | 30 || No | 26 |Title | 27 |
|---|---|
| {{ $kar }} | 34 |{{ $link[0] }} | 35 |
{{ $post->summary }}
31 |{{ $details['summary'] }}
33 | 34 || Route | 30 |# of Residential Addresses | 31 |# of Business Addresses | 32 |
|---|---|---|
| {{ $route['route'] }} | 39 |{{ $route['residential'] }} | 40 |{{ $route['business'] }} | 41 |
| No | 27 |Name | 28 |Geopoints | 29 |
|---|---|---|
| {{ $kar }} | 37 |{{ $venue['name'] }} | 38 |{{ $venue['location']['lat'] . ',' . $venue['location']['lng'] }} | 39 |
| Rank | 27 |Title | 28 |Description | 29 |Author | 30 |ISBN-13 | 31 |
|---|---|---|---|---|
| {{ $kar }} | 39 |{{ $info['title'] }} | 40 |{{ $info['description'] }} | 41 |{{ $info['author'] }} | 42 |{{ $info['primary_isbn13'] }} | 43 |
A boilerplate for Laravel web applications.
7 | 8 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
14 | 15 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
19 | 20 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
24 | 25 |Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.
28 | 29 |
25 |
26 | {{ $details->bio->summary }}
34 | 35 |26 | 28 |
29 | 30 |
31 |
32 |
30 | {{ $details['description'] }}
44 |Displaying public information for Steam ID: 76561197982488301.
22 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 | {{ $tweet['text'] }}
51 || No | 29 |Picture | 30 |Full Name | 31 |Slack Handle | 32 |
|---|---|---|---|
| {{ $kar }} | 40 |{{ $member->profile->real_name }} | 42 |{{ $member->name }} | 43 |
In test mode, you can use these test cards to simulate a successful transaction:
42 | 43 || Number | 47 |Card type | 48 |
|---|---|
| 4242 4242 4242 4242 | 53 |Visa | 54 |
| 4012 8888 8888 1881 | 57 |Visa | 58 |
| 5555 5555 5555 4444 | 61 |MasterCard | 62 |
| 5105 1051 0510 5100 | 65 |MasterCard | 66 |
| 3782 822463 10005 | 69 |American Express | 70 |
| 3714 496353 98431 | 73 |American Express | 74 |
| 6011 1111 1111 1117 | 77 |Discover | 78 |
| 6011 0009 9013 9424 | 81 |Discover | 82 |
| 3056 9309 0259 04 | 85 |Diners Club | 86 |
| 3852 0000 0232 37 | 89 |Diners Club | 90 |
| 3530 1113 3330 0000 | 93 |JCB | 94 |
| 3566 0020 2036 0505 | 97 |JCB | 98 |
This is the response you will get when customer's card has been charged successfully. 106 | You could use some of the data below for logging purposes.
107 |{ id: 'ch_103qzW2eZvKYlo2CiYcKs6Sw',
108 | object: 'charge',
109 | created: 1397510564,
110 | livemode: false,
111 | paid: true,
112 | amount: 395,
113 | currency: 'usd',
114 | refunded: false,
115 | card:
116 | { id: 'card_103qzW2eZvKYlo2CJ2Ss4kwS',
117 | object: 'card',
118 | last4: '4242',
119 | type: 'Visa',
120 | exp_month: 11,
121 | exp_year: 2015,
122 | fingerprint: 'Xt5EWLLDS7FJjR1c',
123 | customer: null,
124 | country: 'US',
125 | name: 'sahat@me.com',
126 | address_line1: null,
127 | address_line2: null,
128 | address_city: null,
129 | address_state: null,
130 | address_zip: null,
131 | address_country: null,
132 | cvc_check: 'pass',
133 | address_line1_check: null,
134 | address_zip_check: null },
135 | captured: true,
136 | refunds: [],
137 | balance_transaction: 'txn_103qzW2eZvKYlo2CNEcJV8SN',
138 | failure_message: null,
139 | failure_code: null,
140 | amount_refunded: 0,
141 | customer: null,
142 | invoice: null,
143 | description: 'sahat@me.com',
144 | dispute: null,
145 | metadata: {},
146 | statement_description: null }
147 |
148 |