@extends('admin.layouts.master') @section('title') installments @endsection @section('css') @endsection @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach($data as $row) @include('admin.installments.edit') @include('admin.installments.deleted') @endforeach
name deposit down payment profit min price Status Action
{{ $row->name() }} {{ $row->deposit }} {{ $row->down_payment }} {{ $row->profit }} {{ $row->min_price }}
active == '1' ? 'checked' : ''}} onchange="toggleStatus({{$row->id}}, this.checked ? '1' : '0')">
{{$data->links()}}
@include('admin.installments.create') @endsection @section('js') @endsection