@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content')
{{ __('Quick Links') }}
@includeIf('backend.partials.languages')
@if (count($quickLinks) == 0)

{{ __('NO QUICK LINK FOUND')."!" }}

@else
@foreach ($quickLinks as $quickLink) @endforeach
{{ __('#') }} {{ __('Title') }} {{ __('URL') }} {{ __('Serial Number') }} {{ __('Actions') }}
{{ $loop->iteration }} {{ $quickLink->title }} {{ $quickLink->url }} {{ $quickLink->serial_number }}
@csrf
@endif
{{-- create modal --}} @include('backend.footer.quick-link.create') {{-- edit modal --}} @include('backend.footer.quick-link.edit') @endsection