@extends('administrator.layout') @section('admintitle', 'Rank') @section('content')
@if (session()->has('success')) @endif @if (session()->has('error')) @endif
{{ __('text.rank') }} {{ __('text.table') }}
@forelse($data as $d) @empty @endforelse
{{ __('text.name') }} {{ __('text.bonus') }} {{ __('text.sort_order') }} {{ __('text.image') }} {{ __('text.action') }}
{{ $d->name }} {{ $d->bonus }} {{ $d->sort_order ?: 0 }} @if($d->image) @else @endif
{{ __('text.no_records_found') }}
{{ $data->links() }}
@endsection