@extends('admin.layout')
{{-- this style will be applied when the direction of language is right-to-left --}}
@includeIf('admin.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('admin.footer.quick-link.create')
{{-- edit modal --}}
@include('admin.footer.quick-link.edit')
@endsection