??????????????
<?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', 'art