@extends('layouts.app') @section('title') Banned @endsection @section('content')
You've been banned from {{ config('app.name') }}.
Reason: {{ Auth::user()->ban_reason }}
Banned until {{ date('m/d/Y', strtotime(Auth::user()->banned_until)) }}.
@if (Auth::user()->banned_until->isPast()) @endif @elseYou're not banned, and you shouldn't be here!
@endif