@extends('master.app') @section('title', 'Business Info') @section('body')

Business Information

@if($data->count() == 0) Add @endif
@include('general.valert')
@foreach($data as $row) @endforeach
# Name Phone Email Type Date Type Each Report Actions
{{ $loop->iteration }} {{ $row->business_name }} {{ $row->business_phone }} {{ $row->business_email ?? '-' }} @if($row->business_type == 1) Tread @elseif($row->business_type == 2) Production @else - @endif @if($row->date_type == '1' || strtolower($row->date_type) == 'shamsi') Shamsi @elseif($row->date_type == '2' || strtolower($row->date_type) == 'miladi') Miladi @else - @endif @if((int)$row->each_one_report === 1) ON @else OFF @endif
@endsection @section('pageJs') @endsection