@extends('layouts.admin') {{-- Web site Title --}} @section('title') {{ __('tools/title.push_updates') }} @parent @endsection {{-- Content Header --}} @section('header') {{ __('tools/title.push_updates') }} {{ __('tools/title.push_updates_subtitle') }} @endsection {{-- Breadcrumbs --}} @section('breadcrumbs')
  • {{ __('site.dashboard') }}
  • {{ __('site.tools') }}
  • hi {{ __('tools/title.push_updates') }}
  • @endsection {{-- Content --}} @section('content')

    {{ __('tools/title.pushing_updates') }}

    @if($servers->isEmpty()) @include('tools._nothing_to_do', ['info_message' => __('tools/messages.push_updates_no_servers')]) @elseif($zonesToUpdate->isEmpty() && $zonesToDelete->isEmpty()) @include('tools._nothing_to_do', ['info_message' => __('tools/messages.push_updates_nothing_to_do')]) @else @include('tools._push_summary') @endif
    @endsection