@extends('layouts.master') @section('title','Banned Users') @section('content')
| User | Ban started time | Scheduled ban end time | Duration | Remarks | Revoke | |
|---|---|---|---|---|---|---|
| {{ $ban->User->name}} | {{ $ban->User->email}} | {{ date('d M Y h:i:s a',strtotime($ban->ban_started_at))}} | {{ date('d M Y h:i:s a',strtotime($ban->scheduled_ban_end_time))}} | {{ $ban->duration.' '.$ban->duration_type }} | {{ $ban->remarks }} | @if($ban->status) @livewire('RevokeBan',['ban_id'=>$ban->id]) @elseif($ban->is_revoked) Revoked @else Not exists now @endif |
| No banned users | ||||||