“Ларавел Фасад” Ответ

Ларавел Фасад

<?php
 
namespace App\Http\Controllers;
 
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Cache;
 
class UserController extends Controller
{
    /**
     * Show the profile for the given user.
     *
     * @param  int  $id
     * @return Response
     */
    public function showProfile($id)
    {
        $user = Cache::get('user:'.$id);
 
        return view('profile', ['user' => $user]);
    }
}
Obedient Octopus

Laravel DB Facade Relations

$antiques = DB::table('antiques')
    ->join('images', 'images.antiques_id', '=', 'antiques.id')
    ->latest()
    ->limit(20)
    ->get(['antiques.*', 'images.path']);
Sminkie

Ответы похожие на “Ларавел Фасад”

Вопросы похожие на “Ларавел Фасад”

Больше похожих ответов на “Ларавел Фасад” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования