관리-도구
편집 파일: GalleryController.php
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Galleries; use App\Artist; class GalleryController extends Controller { public function getIndex($id = null) { $pics = Galleries::where('artist_id', $id)->get(); $artist = Artist::find($id); return view('gallery', compact('pics', 'artist')); } }