@extends('layouts.app') @section('content')
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'top'))
{!! $pageContent->page_content_top !!}
@endif
@if ($user->broadcast_msg != '')
{{ $user->broadcast_msg }}
@endif

New Order

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if (Session::has('order_details')) @php $orderDetails = Session::get('order_details'); @endphp
ID: {{ $orderDetails['id'] }}
Service: {{ $orderDetails['service'] }}
Link: {{ $orderDetails['link'] }}
Quantity: {{ $orderDetails['quantity'] }}
Charge: {{ $orderDetails['price'] }}
Balance: {{ $orderDetails['balance'] }}
@endif @if (Session::has('order_detail_mass')) @php $orderDetails = Session::get('order_detail_mass'); @endphp
Total: {{ $orderDetails['total'] }}
Errors: {{ $orderDetails['errors'] }}
Success: {{ $orderDetails['successes'] }}
Price: {{ $orderDetails['price'] }}
Balance: {{ $orderDetails['balance'] }}
@endif
@csrf @method('POST')
@csrf @method('POST')
  Note
Here you can place your orders easy! Please make sure you check all the prices and delivery times before you place a order! After a order submited it cannot be canceled.
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'bottom'))
{!! $pageContent->page_content_bottom !!}
@endif
@include('layouts.footer') @endsection @section('script') @endsection