Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use Illuminate\Support\Facades\DB;
- class SiswaController extends Controller
- {
- public function index()
- {
- $data['siswa'] = DB::table('siswa')
- ->orderby('jenis_kelamin')
- ->where('nama_lengkap', 'like', '%o%')
- ->get();
- return view('belajar', $data);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment