JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr gilour

File "ExportAppoinment.php"

Full Path: /home/sibcards/public_html/app/Exports/ExportAppoinment.php
File size: 316 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Exports;

use App\Models\Appointment_deatail;
use Maatwebsite\Excel\Concerns\FromCollection;

class ExportAppoinment implements FromCollection
{
    /**
    * @return \Illuminate\Support\Collection
    */
    public function collection()
    {
        return Appointment_deatail::all();
    }
}