@extends('backend.layout')
{{-- this style will be applied when the direction of language is right-to-left --}}
@includeIf('backend.partials.rtl-style')
@section('content')
@if (count($quickLinks) == 0)
{{ __('NO QUICK LINK FOUND')."!" }}
@else
{{ __('#') }} |
{{ __('Title') }} |
{{ __('URL') }} |
{{ __('Serial Number') }} |
{{ __('Actions') }} |
@foreach ($quickLinks as $quickLink)
{{ $loop->iteration }} |
{{ $quickLink->title }} |
{{ $quickLink->url }} |
{{ $quickLink->serial_number }} |
|
@endforeach
@endif
{{-- create modal --}}
@include('backend.footer.quick-link.create')
{{-- edit modal --}}
@include('backend.footer.quick-link.edit')
@endsection