@extends('layouts.app') @section('title', $guild->name . ' - ' . __('Гильдия') . ' - WoW Rebirth') @php $breadcrumbs = [ ['title' => __('Главная'), 'url' => route('welcome')], ['title' => __('Оружейная'), 'url' => route('armory.index')], ['title' => $guild->name, 'url' => route('guild.show', ['realm' => $realm, 'guildid' => $guild->guildid])], ]; // You should create a helper function for this $faction = in_array($members->first()->race ?? 1, [2, 5, 6, 8, 10]) ? 'horde' : 'alliance'; @endphp @section('content') @include('pages.guild.partials._show-content') @endsection