@extends('dashboard.layout.layout') @section('content')
{!! trans('dashboard.update_request.update_requests') !!}
{!! $update_requests->links() !!}
@foreach ($update_requests as $update_request) @endforeach
# {!! trans('dashboard.general.name') !!} {!! trans('dashboard.update_request.update_type') !!} {!! trans('dashboard.general.added_date') !!} {!! trans('dashboard.general.control') !!}
{{ $loop->iteration }} {{ $update_request->user->fullname }} {{ trans('dashboard.update_request.update_types.'.$update_request->update_type) }}
{{ $update_request->created_at->format("Y-m-d") }}
{!! $update_requests->links() !!}
@include('dashboard.layout.delete_modal') @endsection @section('vendor_styles') @endsection @section('page_styles') @endsection @include('dashboard.update_request.scripts')