@extends('layouts.admin') @section('content')
التحويلات
@can('redirections-create') إضافة جديد @endcan
@foreach($redirections as $redirection) @endforeach
# الرابط القديم الرابط الجديد نوع التحويل تحكم
{{$redirection->id}} {{urldecode($redirection->url)}} {{urldecode($redirection->new_url)}} @if($redirection->code==302) مؤقت @else دائم @endif @can('redirections-update') تحكم @endif @can('redirections-delete')
@csrf @method("DELETE")
@endcan
{{$redirections->appends(request()->query())->render()}}
@endsection