@extends('admin.layouts.app') @section('content')
{{__("Attribute: :name",['name'=>$attr->name])}}
@include('admin.message')
{{__("Add Term")}}
@csrf @include('Boat::admin/terms/form')
{{__("Add new")}}
@if(!empty($rows))
{{csrf_field()}}
{{__(" Bulk Action ")}}
{{__(" Delete ")}}
{{__('Apply')}}
@endif
{{__('Search')}}
{{__("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