@extends('admin.layouts.app') @section('content')

{{__("Attribute: :name",['name'=>$attr->name])}}

@include('admin.message')
{{__("Add Term")}}
@csrf @include('Space::admin/terms/form')
@if(!empty($rows))
{{csrf_field()}}
@endif
{{__("All Terms")}}
@if(count($rows) > 0) @foreach ($rows as $row) @endforeach @else @endif {{$rows->appends(request()->query())->links()}}
{{__("Name")}} {{__("Date")}}
{{$row->name}} {{ display_date($row->updated_at)}} {{__('Edit')}}
{{__("No data")}}
@endsection