@extends('layouts.admin_new') @section('content') @can('deployment_opportunity_create')
{{ trans('global.add') }} {{ trans('cruds.deploymentOpportunity.title_singular') }}
@endcan
{{ trans('cruds.deploymentOpportunity.title_singular') }} {{ trans('global.list') }}
@foreach($deploymentOpportunities as $key => $deploymentOpportunity) @endforeach
{{ trans('cruds.deploymentOpportunity.fields.id') }} {{ trans('cruds.deploymentOpportunity.fields.name') }} {{ trans('cruds.deploymentOpportunity.fields.region') }} {{ trans('cruds.deploymentOpportunity.fields.posting_number') }} {{ trans('cruds.deploymentOpportunity.fields.logistics_administrator') }} {{ trans('cruds.deploymentOpportunity.fields.event_name') }} {{ trans('cruds.deploymentOpportunity.fields.deployer_position_title') }} {{ trans('cruds.deploymentOpportunity.fields.expected_deployment_start_date') }} {{ trans('cruds.deploymentOpportunity.fields.actual_deployment_start_date') }} {{ trans('cruds.deploymentOpportunity.fields.expected_deployment_end_date') }} {{ trans('cruds.deploymentOpportunity.fields.actual_deployment_end_date') }} {{ trans('cruds.deploymentOpportunity.fields.number_of_deployers') }} {{ trans('cruds.deploymentOpportunity.fields.location_city') }} {{ trans('cruds.deploymentOpportunity.fields.location_province_region') }} {{ trans('cruds.deploymentOpportunity.fields.request') }}  
{{ $deploymentOpportunity->id ?? '' }} {{ $deploymentOpportunity->name ?? '' }} {{ $deploymentOpportunity->region->name ?? '' }} {{ $deploymentOpportunity->posting_number ?? '' }} {{ $deploymentOpportunity->logistics_administrator->name ?? '' }} {{ $deploymentOpportunity->event_name ?? '' }} {{ $deploymentOpportunity->deployer_position_title ?? '' }} {{ $deploymentOpportunity->expected_deployment_start_date ?? '' }} {{ $deploymentOpportunity->actual_deployment_start_date ?? '' }} {{ $deploymentOpportunity->expected_deployment_end_date ?? '' }} {{ $deploymentOpportunity->actual_deployment_end_date ?? '' }} {{ $deploymentOpportunity->number_of_deployers ?? '' }} {{ $deploymentOpportunity->location_city ?? '' }} {{ $deploymentOpportunity->location_province_region->name ?? '' }} {{ $deploymentOpportunity->request->request_date ?? '' }} @can('deployment_opportunity_show') {{ trans('global.view') }} @endcan @can('deployment_opportunity_edit') {{ trans('global.edit') }} @endcan @can('deployment_opportunity_delete')
@endcan
@endsection @section('scripts') @parent @endsection