@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Domains']) @endsection @section('content')
@if($type== 0 && $type != 'all')
Note: {{ __('Before Delete Domain Permanently U Need To Delete The Domain From Your Server') }}
@endif
@csrf
@can('domain.delete')
@endcan
@foreach($posts as $row) @endforeach
{{ __('Domain Name') }} {{ __('Full Domain') }} {{ __('User') }} {{ __('Status') }} {{ __('Created at') }} {{ __('Action') }}
{{ $row->domain }} {{ $row->full_domain }} {{ $row->user->name }} @if($row->status==1) {{ __('Active') }} @elseif($row->status==0) {{ __('Trash') }} @elseif($row->status==2) {{ __('Expired') }} @elseif($row->status==3) {{ __('Requested') }} @endif {{ $row->created_at->diffforHumans() }} @can('domain.edit') @endcan
{{ __('Domain Name') }} {{ __('Full Domain') }} {{ __('User') }} {{ __('Status') }} {{ __('Created at') }} {{ __('Action') }}
{{ $posts->appends($request->all())->links('vendor.pagination.bootstrap-4') }}
@endsection @push('js') @endpush