1. 2 Xây dựng giao diện settings (ok)

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class SettingController extends Controller
{
/**
* Display a listing of the resource.
*/
public function index()
{
return view("backend.settings.index");
}
}
Previous1. 1 Xây dựng giao diện backend (laracasts/flash) (ok)Next1. 3 Xử lý logic làm giao diện (ok)
Last updated