@extends('layout.with-main')
@section('title')
Bans - {{ __('staff.staff-dashboard') }} - {{ config('other.title') }}
@endsection
@section('meta')
@endsection
@section('breadcrumbs')
{{ __('staff.staff-dashboard') }}
{{ __('staff.bans-log') }}
@endsection
@section('nav-tabs')
@include('Staff.partials.user-info-search')
@endsection
@section('page', 'page__staff-ban--index')
@section('main')
{{ __('common.user') }} {{ __('user.bans') }}
| # |
{{ __('common.user') }} |
{{ __('user.judge') }} |
{{ __('user.reason-ban') }} |
{{ __('user.reason-unban') }} |
{{ __('user.created') }} |
{{ __('user.removed') }} |
@forelse ($bans as $ban)
| {{ $ban->id }} |
|
|
{{ $ban->ban_reason }} |
{{ $ban->unban_reason }} |
|
|
@empty
| No bans |
@endforelse
{{ $bans->links('partials.pagination') }}
@endsection