@extends('admin.layout') @php $selLang = \App\Models\Language::where('code', request()->input('language'))->first(); @endphp @if(!empty($selLang) && $selLang->rtl == 1) @section('styles') @endsection @endif @section('content')
{{__('Userful Links')}}
@if (!empty($langs)) @endif
@if (count($aulinks) == 0)

{{__('NO USEFUL LINK FOUND')}}

@else
@foreach ($aulinks as $key => $aulink) @endforeach
# {{__('Name')}} {{__('URL')}} {{__('Actions')}}
{{$loop->iteration}} {{$aulink->name}} {{$aulink->url}} {{__('Edit')}}
@csrf
@endif
@endsection