@extends('admin.layout') @section('content')
Update Permalinks
@csrf
@foreach ($permalinks as $pl) @php $type = $pl->type; $permalink = $pl->permalink; $details = $pl->details; @endphp
@if ($details == 0) Preview: {{url("$permalink")}} @elseif ($details == 1) @if ($type == 'package_order') Preview: {{url("$permalink/{id}")}} @elseif ($type == 'rss_details') Preview: {{url("$permalink/{title-slug}/{id}")}} @else Preview: {{url("$permalink/{title-slug}")}} @endif @endif @if ($errors->has("$type"))

{{$errors->first("$type")}}

@endif
@endforeach
@endsection