@extends('admin.layout.master') @section('body')

{{$page_title}}

{{ csrf_field() }}
Title
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
Sub title
@if ($errors->has('subtitle'))
{{ $errors->first('subtitle') }}
@endif




@if ($machines->count() > 0)

Machines:


@foreach($machines as $machine)

{!! $machine->title !!}

{!! $machine->monthly_income !!}

{!! $machine->all_in_hosting !!}

Edit machine Delete machine
@endforeach
@endif
@endsection @section('script') @stop