1. eCommonerce > routes > web.php
Route::get('/billings/schedule', 'Store\Billing\BillingController@schedule');
<?php
namespace App\Http\Controllers\Store\Billing;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
class BillingController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
return view('store.billing.billing');
}
public function schedule()
{
return view('store.billing.schedule');
}
public function hold()
{
return view('store.billing.hold');
}
}
3. eCommerce > resources > views > store > billing > blade 파일 생성