@extends('layouts.app') @section('content')
@include('layouts.leftside-menubar')
@include('components.pages-bar',['pageTitle' =>''. trans('Website Settings').' / '.trans('Important Link').'']) @include('components.sectionbar.frontmanagement-bar',['importantLinks'=>$importantLinks])
@if (count($importantLinks)>0)
@foreach ($importantLinks as $key=>$importantLink) @endforeach
# @lang('Link') @lang('Name') @lang('Priority') @lang('Status') @lang('Edit') @lang('Delete')
{{ $key + 1 }} {{$importantLink->link}} {{$importantLink->name}} {{$importantLink->parioty}} {{status($importantLink->status)}} @lang('Edit') @lang('Delete')
@push('styles') @endpush @else
@lang('No Related Data Found.')
@endif
@endsection