Skip to content

Instantly share code, notes, and snippets.

@aryadiahmad4689
Created December 4, 2020 23:40
Show Gist options
  • Save aryadiahmad4689/8f3acbeb6f0769c713c0f5faa0961f86 to your computer and use it in GitHub Desktop.
Save aryadiahmad4689/8f3acbeb6f0769c713c0f5faa0961f86 to your computer and use it in GitHub Desktop.
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('customer-create','CustomerController@create');
Route::post('customer-store','CustomerController@store');
Route::get('customer-index','CustomerController@index')->name('customer.index');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment